diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-17 05:33:07 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-17 05:33:07 +0800 |
commit | e83ee52ce58c6909b57e2137505ad504d596a6b3 (patch) | |
tree | 74bebdf59d73fff9b064695e198cbd9738c8a266 /shell/e-shell-view-menu.c | |
parent | 052416eb6fcb3247d1314cc3f30a987d8c55370a (diff) | |
download | gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar.gz gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar.bz2 gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar.lz gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar.xz gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.tar.zst gsoc2013-evolution-e83ee52ce58c6909b57e2137505ad504d596a6b3.zip |
Remove the Help menu verbs and add a "HelpFAQ" verb. (command_help):
* e-shell-view-menu.c: Remove the Help menu verbs and add a
"HelpFAQ" verb.
(command_help): Removed.
(command_help_faq): New, implementation for the "HelpFAQ" verb.
svn path=/trunk/; revision=12127
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 8575f472e4..0027682b69 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -230,13 +230,11 @@ command_about_box (BonoboUIComponent *uih, } static void -command_help (BonoboUIComponent *uih, - void *data, - const char *path) +command_help_faq (BonoboUIComponent *uih, + void *data, + const char *path) { - GnomeHelpMenuEntry help_entry = { "evolution", data }; - - gnome_help_display (NULL, &help_entry); + gnome_url_show ("http://www.ximian.com/apps/evolution-faq.html"); } static void @@ -636,11 +634,7 @@ BonoboUIVerb folder_verbs [] = { }; BonoboUIVerb help_verbs [] = { - BONOBO_UI_VERB_DATA ("HelpIndex", command_help, "index.html"), - BONOBO_UI_VERB_DATA ("HelpGetStarted", command_help, "usage-mainwindow.html"), - BONOBO_UI_VERB_DATA ("HelpUsingMail", command_help, "usage-mail.html"), - BONOBO_UI_VERB_DATA ("HelpUsingCalendar", command_help, "usage-calendar.html"), - BONOBO_UI_VERB_DATA ("HelpUsingContact", command_help, "usage-contact.html"), + BONOBO_UI_VERB_DATA ("HelpFAQ", command_help_faq, NULL), BONOBO_UI_VERB_END }; |