aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view-menu.c
diff options
context:
space:
mode:
authorMatthew Loper <mloper@src.gnome.org>2000-05-10 00:46:59 +0800
committerMatthew Loper <mloper@src.gnome.org>2000-05-10 00:46:59 +0800
commitf150fa0b160ca7aa013cf6b9db644df1547f59d4 (patch)
tree88b97c381b51cd96a0681c8946ca77c253da7c28 /shell/e-shell-view-menu.c
parent85faea789a7101eccd334b3b8734b9cb697a2d38 (diff)
downloadgsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar.gz
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar.bz2
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar.lz
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar.xz
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.tar.zst
gsoc2013-evolution-f150fa0b160ca7aa013cf6b9db644df1547f59d4.zip
+ * calendar/pcs/cal-backend.c (cal_backend_add_cal): Return nothing
+ for a 'void' function. + * folder-browser-factory.c (control_activate): Remove "File->mail" + menuitem. + * e-shell-view-menu.c (command_run_bugbuddy): New function; allows + users to submit a bug. svn path=/trunk/; revision=2948
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r--shell/e-shell-view-menu.c17
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. */