diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 17 |
2 files changed, 22 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 90400d3fe1..ffe06a1e29 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-05-09 Matt Loper <matt@helixcode.com> + + * e-shell-view-menu.c (command_run_bugbuddy): New function; allows + users to submit a bug. + 2000-05-09 Ettore Perazzoli <ettore@helixcode.com> * e-shell.c (e_shell_new_view): Display the specified @uri in the diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 156b81ed30..f0d4bdc9c0 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -43,9 +43,19 @@ command_quit (GtkWidget *widget, e_shell_quit (shell); } +static void +command_run_bugbuddy (GtkWidget *widget, gpointer data) +{ + + +} + + /* Unimplemented commands. */ + + #define DEFINE_UNIMPLEMENTED(func) \ static void \ func (GtkWidget *widget, gpointer data) \ @@ -176,6 +186,13 @@ static GnomeUIInfo menu_actions [] = { GNOMEUIINFO_END }; +static GnomeUIInfo menu_help [] = { + { GNOME_APP_UI_ITEM, N_("_Submit bug"), + N_("Submit bug-report via bug-buddy"), command_run_bugbuddy, NULL, + NULL, 0, 0, 'n', GDK_CONTROL_MASK | GDK_SHIFT_MASK }, + GNOMEUIINFO_END +}; + /* Menu bar. */ |