aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2004-02-12 02:30:32 +0800
committerRodney Dawes <dobey@src.gnome.org>2004-02-12 02:30:32 +0800
commitdb1b452b25b7c901e961ae034a4167b5fe70a3d5 (patch)
treec10306fcbd5f8c2fef0c3cd6c0d164674006bc87 /widgets
parentb910aabdb2f68b79fe0514aadf9a241f58964280 (diff)
downloadgsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar.gz
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar.bz2
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar.lz
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar.xz
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.tar.zst
gsoc2013-evolution-db1b452b25b7c901e961ae034a4167b5fe70a3d5.zip
Change the filename and section that we pass to gnome_help_display_desktop
2004-02-11 Rodney Dawes <dobey@ximian.com> * e-multi-config-dialog.c (impl_response): Change the filename and section that we pass to gnome_help_display_desktop so that the help browser displays the documentation correctly svn path=/trunk/; revision=24708
Diffstat (limited to 'widgets')
-rw-r--r--widgets/misc/ChangeLog6
-rw-r--r--widgets/misc/e-multi-config-dialog.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog
index e4654af02f..36b89c7c8a 100644
--- a/widgets/misc/ChangeLog
+++ b/widgets/misc/ChangeLog
@@ -1,3 +1,9 @@
+2004-02-11 Rodney Dawes <dobey@ximian.com>
+
+ * e-multi-config-dialog.c (impl_response): Change the filename and
+ section that we pass to gnome_help_display_desktop so that the help
+ browser displays the documentation correctly
+
2004-02-10 Rodney Dawes <dobey@ximian.com>
* e-multi-config-dialog.c (init): Add a Help button
diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c
index f2b8cbcfcd..97b4e7ab3d 100644
--- a/widgets/misc/e-multi-config-dialog.c
+++ b/widgets/misc/e-multi-config-dialog.c
@@ -271,8 +271,8 @@ impl_response (GtkDialog *dialog,
case GTK_RESPONSE_HELP:
gnome_help_display_desktop (NULL,
"evolution-" BASE_VERSION,
- "config-prefs.xml",
- "config-prefs",
+ "evolution-" BASE_VERSION ".xml",
+ "config",
&error);
if (error != NULL)
g_warning ("%s", error->message);