From d18a48afc602a19130d13af6097df566fa260690 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 7 Mar 2011 16:11:33 +0100 Subject: event_option_obj_t -> event_option_t, event_obj_t -> event_config_t --- src/include/report/event_xml_parser.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/include') 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 -- cgit