summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-03-09 17:48:48 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-03-09 17:48:48 +0100
commit14be10f0582478983c69d567b416621783768c2d (patch)
tree299e99c444dc1e51998642b6f3e1ddacb985c8a0 /src/include
parentc2f2a9f310e7b3bc3725cc8dc7e805fd38c7fbbd (diff)
downloadabrt-14be10f0582478983c69d567b416621783768c2d.tar.gz
abrt-14be10f0582478983c69d567b416621783768c2d.tar.xz
abrt-14be10f0582478983c69d567b416621783768c2d.zip
remove some not needed fields from event_config
Diffstat (limited to 'src/include')
-rw-r--r--src/include/report/event_config.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/report/event_config.h b/src/include/report/event_config.h
index e2310885..75fb0c78 100644
--- a/src/include/report/event_config.h
+++ b/src/include/report/event_config.h
@@ -47,9 +47,9 @@ typedef struct
char *value;
char *label;
option_type_t type;
- char *description; //can be used as tooltip in gtk app
- char *allowed_value;
- int required;
+ //char *description; //can be used as tooltip in gtk app
+ //char *allowed_value;
+ //int required;
} event_option_t;
event_option_t *new_event_option(void);
@@ -58,10 +58,10 @@ void free_event_option(event_option_t *p);
//structure to hold the option data
typedef struct
{
- char *name; //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;
+ char *screen_name; //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"
GList *options;
} event_config_t;
@@ -75,7 +75,7 @@ void load_event_description_from_file(event_config_t *event_config, const char*
void load_event_config_data(void);
/* Frees all loaded data */
void free_event_config_data(void);
-event_config_t *get_event_config(const char *name);
+event_config_t *get_event_config(const char *event_name);
extern GHashTable *g_event_config_list; // for iterating through entire list of all loaded configs