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
This commit is contained in:
Ettore Perazzoli
2001-08-16 21:33:07 +00:00
parent 052416eb6f
commit e83ee52ce5
2 changed files with 12 additions and 12 deletions

View File

@ -1,3 +1,10 @@
2001-08-16 Ettore Perazzoli <ettore@ximian.com>
* 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.
2001-08-16 Ettore Perazzoli <ettore@ximian.com>
* e-shell-folder-title-bar.c (label_realize_callback): New
@ -67,7 +74,6 @@ o2001-08-16 Ettore Perazzoli <ettore@ximian.com>
* e-corba-storage.c (impl_StorageListener_notifyFolderCreated):
Pass the passed-in unread_count to e_storage_new_folder.
>>>>>>> 1.617
2001-08-13 Ettore Perazzoli <ettore@ximian.com>
* e-gray-bar.c (impl_style_set): Chain to the parent class.

View File

@ -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
};