aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2003-04-17 11:58:43 +0800
committerMichael Zucci <zucchi@src.gnome.org>2003-04-17 11:58:43 +0800
commit231f3d598e3da4c36f96d1eb22853071f4b69654 (patch)
treed7818b7bf5b54459721957e27bf7886131c815b6
parent1a59bc99314a6351efbed6ef03d3a32d85200638 (diff)
downloadgsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar.gz
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar.bz2
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar.lz
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar.xz
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.tar.zst
gsoc2013-evolution-231f3d598e3da4c36f96d1eb22853071f4b69654.zip
remove the help menu item handling, as the help menu is removed. Clean up
2003-04-17 Not Zed <NotZed@Ximian.com> * mail-signature-editor.c (menu_help): remove the help menu item handling, as the help menu is removed. Clean up of #38927. svn path=/trunk/; revision=20877
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-signature-editor.c7
2 files changed, 5 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index e13c517b78..ff438ae3cf 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2003-04-17 Not Zed <NotZed@Ximian.com>
+
+ * mail-signature-editor.c (menu_help): remove the help menu item
+ handling, as the help menu is removed. Clean up of #38927.
+
2003-04-16 Not Zed <NotZed@Ximian.com>
* importers/Makefile.am (%.server.in): Remove COMPONENTDIR and set
diff --git a/mail/mail-signature-editor.c b/mail/mail-signature-editor.c
index 7a28e7a912..8d71636620 100644
--- a/mail/mail-signature-editor.c
+++ b/mail/mail-signature-editor.c
@@ -271,18 +271,11 @@ menu_file_save_close_cb (BonoboUIComponent *uic, gpointer data, const gchar *pat
destroy_editor (editor);
}
-static void
-menu_help (BonoboUIComponent *uih, void *data, const char *path)
-{
- gnome_help_display ("usage-mail-getnsend-send.html", "HTML-SIGNATURE-HOWTO", NULL);
-}
-
static BonoboUIVerb verbs [] = {
BONOBO_UI_VERB ("FileSave", menu_file_save_cb),
BONOBO_UI_VERB ("FileClose", menu_file_close_cb),
BONOBO_UI_VERB ("FileSaveClose", menu_file_save_close_cb),
- BONOBO_UI_VERB ("HelpSigEditor", menu_help),
BONOBO_UI_VERB_END
};