From 365baba740b443c38c0e9669300b3f6f532fb057 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 14 Mar 2011 18:09:54 +0100 Subject: put code shared among gui and wizard into libreportgtk --- src/include/report/event_config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include') diff --git a/src/include/report/event_config.h b/src/include/report/event_config.h index 75fb0c78..64407b7f 100644 --- a/src/include/report/event_config.h +++ b/src/include/report/event_config.h @@ -58,7 +58,7 @@ void free_event_option(event_option_t *p); //structure to hold the option data typedef struct { - char *screen_name; //name of the event "Bugzilla" "RedHat Support Uploader" + char *screen_name; //ui friendly name of the event "Bugzilla" "RedHat Support Uploader" //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" char *description; // "Report to ...."/"Save to file" -- cgit From c3295e8741d5f35e30301933bd853bf6c9369588 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Mon, 14 Mar 2011 21:42:44 +0100 Subject: abrt-gui: save event settings in gnome keyring --- src/include/report/event_config.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/include') diff --git a/src/include/report/event_config.h b/src/include/report/event_config.h index 64407b7f..75f357dc 100644 --- a/src/include/report/event_config.h +++ b/src/include/report/event_config.h @@ -76,6 +76,7 @@ void load_event_config_data(void); /* Frees all loaded data */ void free_event_config_data(void); event_config_t *get_event_config(const char *event_name); +event_option_t *get_event_option_from_list(const char *option_name, GList *event_options); extern GHashTable *g_event_config_list; // for iterating through entire list of all loaded configs -- cgit