diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-05-10 00:46:59 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-05-10 00:46:59 +0800 |
commit | f150fa0b160ca7aa013cf6b9db644df1547f59d4 (patch) | |
tree | 88b97c381b51cd96a0681c8946ca77c253da7c28 /shell | |
parent | 85faea789a7101eccd334b3b8734b9cb697a2d38 (diff) | |
download | gsoc2013-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')
-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. */ |