aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog4
-rw-r--r--shell/e-shell-window-commands.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 6478efb4c2..a7b86247fb 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,7 @@
+2004-05-28 JP Rosevear <jpr@novell.com>
+
+ * e-shell-window-commands.c: remove bogus include
+
2004-05-28 William Jon McCann <mccann@jhu.edu>
* Makefile.am (evolution_SOURCES): Remove e-shell-about-box.
diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c
index f39ae5f7d8..35ccb7d40e 100644
--- a/shell/e-shell-window-commands.c
+++ b/shell/e-shell-window-commands.c
@@ -26,7 +26,6 @@
#include "e-shell-window-commands.h"
-#include "e-shell-about-box.h"
#include "e-shell-importer.h"
#include "e-shell-window.h"
@@ -358,7 +357,9 @@ command_help_faq (BonoboUIComponent *uih,
EShellWindow *window,
const char *path)
{
- gnome_url_show ("http://www.ximian.com/apps/evolution-faq.html", NULL); /* FIXME use the error */
+ /* FIXME Show when we have a faq
+ /* FIXME use the error */
+ gnome_url_show ("http://gnome.org/projects/evolution/faq.shtml", NULL);
}
static void
@@ -516,7 +517,6 @@ static BonoboUIVerb tools_verbs[] = {
};
static BonoboUIVerb help_verbs [] = {
- BONOBO_UI_VERB ("HelpFAQ", (BonoboUIVerbFn) command_help_faq),
BONOBO_UI_VERB ("QuickReference", (BonoboUIVerbFn) command_quick_reference),
BONOBO_UI_VERB ("HelpSubmitBug", (BonoboUIVerbFn) command_submit_bug),
BONOBO_UI_VERB ("HelpAbout", (BonoboUIVerbFn) command_about_box),