aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-06-19 01:50:51 +0800
committerDan Winship <danw@src.gnome.org>2001-06-19 01:50:51 +0800
commit3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd (patch)
treecc03cf6c9ba79f59892b12445c8a1ed51749dbe0 /shell
parent60fe445b0c4b06329f5277a4881c203f6be38919 (diff)
downloadgsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar.gz
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar.bz2
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar.lz
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar.xz
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.tar.zst
gsoc2013-evolution-3a4f16b681a4dbe89aebdecebf0e3174dccc4ffd.zip
Fix the help URLs
* e-shell-view-menu.c: Fix the help URLs svn path=/trunk/; revision=10265
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog4
-rw-r--r--shell/e-shell-view-menu.c11
2 files changed, 9 insertions, 6 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 0fe0def053..e988d0ead2 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-18 Dan Winship <danw@ximian.com>
+
+ * e-shell-view-menu.c: Fix the help URLs
+
2001-06-13 Not Zed <NotZed@Ximian.com>
* e-shell-view.c (switch_on_folder_tree_click): Check priv->uri
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index 1edeffeafe..8936fbed3d 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -600,12 +600,11 @@ BonoboUIVerb folder_verbs [] = {
};
BonoboUIVerb help_verbs [] = {
- 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_DATA ("HelpFAQ", command_help, "evolution-faq/index.html"),
+ 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_END
};