diff options
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index c20791eb3f..59f805c1e1 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1695,13 +1695,12 @@ comp_editor_show_help (CompEditor *editor) priv = editor->priv; - gnome_help_display_desktop (NULL, - "evolution-" BASE_VERSION, - "evolution-" BASE_VERSION ".xml", - priv->help_section, - &error); - if (error != NULL) + gnome_help_display ( + "evolution.xml", priv->help_section, &error); + if (error != NULL) { g_warning ("%s", error->message); + g_error_free (error); + } } |