diff options
-rw-r--r-- | widgets/misc/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/misc/e-multi-config-dialog.c | 4 |
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); |