aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog5
-rw-r--r--shell/e-shell-view-menu.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 6093e788d4..faa9391ce7 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,5 +1,10 @@
2001-07-23 Ettore Perazzoli <ettore@ximian.com>
+ * e-shell-view-menu.c: Get the manuals from the `evolution-guide'
+ dir as that's where they get installed.
+
+2001-07-23 Ettore Perazzoli <ettore@ximian.com>
+
* e-shell-view.c (storage_set_view_box_button_release_event_cb):
Don't handle button events whose button number is not 1.
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index f8a0368d64..09dbbae78f 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -637,11 +637,11 @@ 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 ("HelpIndex", command_help, "evolution-guide/index.html"),
+ BONOBO_UI_VERB_DATA ("HelpGetStarted", command_help, "evolution-guide/usage-mainwindow.html"),
+ BONOBO_UI_VERB_DATA ("HelpUsingMail", command_help, "evolution-guide/usage-mail.html"),
+ BONOBO_UI_VERB_DATA ("HelpUsingCalendar", command_help, "evolution-guide/usage-calendar.html"),
+ BONOBO_UI_VERB_DATA ("HelpUsingContact", command_help, "evolution-guide/usage-contact.html"),
BONOBO_UI_VERB_END
};