diff options
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); |