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 /plugins | |
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 'plugins')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-send-options.c | 25 |
2 files changed, 18 insertions, 13 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 1407b97101..e86c3d2dcf 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,9 @@ +2007-06-03 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #386503 from Matthew Barnes + + * exchange-send-options.c: (exchange_send_options_cb): + 2007-05-25 Matthew Barnes <mbarnes@redhat.com> * exchange-config-listener.c (exchange_add_autocompletion_folders): diff --git a/plugins/exchange-operations/exchange-send-options.c b/plugins/exchange-operations/exchange-send-options.c index 0c9d405875..68bfc89fce 100644 --- a/plugins/exchange-operations/exchange-send-options.c +++ b/plugins/exchange-operations/exchange-send-options.c @@ -191,21 +191,20 @@ static void exchange_send_options_cb (GtkDialog *dialog, gint state, gpointer fu switch (state) { case GTK_RESPONSE_OK: - exchange_send_options_get_widgets_data (sod); + exchange_send_options_get_widgets_data (sod); case GTK_RESPONSE_CANCEL: - gtk_widget_hide (priv->main); - gtk_widget_destroy (priv->main); - g_object_unref (priv->xml); - break; + gtk_widget_hide (priv->main); + gtk_widget_destroy (priv->main); + g_object_unref (priv->xml); + break; case GTK_RESPONSE_HELP: - gnome_help_display_desktop (NULL, - "evolution-" BASE_VERSION, - "evolution-" BASE_VERSION ".xml", - priv->help_section, - &error); - if (error != NULL) - g_warning ("%s", error->message); - break; + gnome_help_display ( + "evolution.xml", priv->help_section, &error); + if (error != NULL) { + g_warning ("%s", error->message); + g_error_free (error); + } + break; } g_signal_emit (G_OBJECT (func_data), signals[SOD_RESPONSE], 0, state); |