diff options
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 17 |
1 files changed, 17 insertions, 0 deletions
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. */ |