summaryrefslogtreecommitdiffstats
path: root/src/include/report
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-03-07 16:11:33 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-03-07 16:11:33 +0100
commitd18a48afc602a19130d13af6097df566fa260690 (patch)
tree67d643003a5bf45e96fad0016bbf5ddb28fe2b0d /src/include/report
parent4af44e92c689fe442dddbf6e18e2731e2d479c5a (diff)
downloadabrt-d18a48afc602a19130d13af6097df566fa260690.tar.gz
abrt-d18a48afc602a19130d13af6097df566fa260690.tar.xz
abrt-d18a48afc602a19130d13af6097df566fa260690.zip
event_option_obj_t -> event_option_t, event_obj_t -> event_config_t
Diffstat (limited to 'src/include/report')
-rw-r--r--src/include/report/event_xml_parser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/report/event_xml_parser.h b/src/include/report/event_xml_parser.h
index c6bda9d5..8e55b1b0 100644
--- a/src/include/report/event_xml_parser.h
+++ b/src/include/report/event_xml_parser.h
@@ -29,7 +29,7 @@ typedef struct
char *description; //can be used as tooltip in gtk app
char *allowed_value;
int required;
-} event_option_obj_t;
+} event_option_t;
//structure to hold the option data
typedef struct
@@ -38,6 +38,6 @@ typedef struct
char *title; //window title - not used right now, maybe the "name" is enough?
char *action;//action description to show in gui like: Upload report to the Red Hat bugzilla"
GList *options;
-} event_obj_t;
+} event_config_t;
-void load_event_description_from_file(event_obj_t *event_desc, const char* filename); \ No newline at end of file
+void load_event_description_from_file(event_config_t *event_config, const char* filename); \ No newline at end of file