diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 23:07:55 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-03 23:07:55 +0800 |
commit | 8bebb05056fd093d0302546fc65edb130c3c136a (patch) | |
tree | d6b46a985b77386944f97ac87d203fdc912497fc /calendar | |
parent | 54a9260f696f5c7462f40af8f838d723ba3abeb5 (diff) | |
download | gsoc2013-evolution-8bebb05056fd093d0302546fc65edb130c3c136a.tar.gz gsoc2013-evolution-8bebb05056fd093d0302546fc65edb130c3c136a.tar.zst gsoc2013-evolution-8bebb05056fd093d0302546fc65edb130c3c136a.zip |
** Fix for bug #386503 from Matthew Barnes
svn path=/trunk/; revision=33647
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 11 |
2 files changed, 11 insertions, 6 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 333c5b6ab3..174e5ebe16 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2007-06-03 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #386503 from Matthew Barnes + + * gui/dialogs/comp-editor.c: (comp_editor_show_help): + 2007-06-03 Srinivasa Ragavan <sragavan@novell.com> ** Fix for version removal from Installed files from Gilles Dartiguelongue 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); + } } |