diff options
author | JP Rosevear <jpr@novell.com> | 2004-05-29 00:35:44 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-05-29 00:35:44 +0800 |
commit | 906663f126bed774a9876ac0102473cbfff8c2fe (patch) | |
tree | 082a49767c7fb47e0019f21bbeb9d6d554d8bb23 /shell | |
parent | f2e876d583a10631304537c94218057095095cc4 (diff) | |
download | gsoc2013-evolution-906663f126bed774a9876ac0102473cbfff8c2fe.tar.gz gsoc2013-evolution-906663f126bed774a9876ac0102473cbfff8c2fe.tar.zst gsoc2013-evolution-906663f126bed774a9876ac0102473cbfff8c2fe.zip |
remove bogus include
2004-05-28 JP Rosevear <jpr@novell.com>
* e-shell-window-commands.c: remove bogus include
svn path=/trunk/; revision=26124
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 4 | ||||
-rw-r--r-- | shell/e-shell-window-commands.c | 6 |
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), |