diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:15:58 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-06-18 13:15:58 +0800 |
commit | dffd9d69efa547950e32ae3bfb291e0c527bf580 (patch) | |
tree | 0a1b4728aed9f889686a8f196f8d469081e44cd4 /plugins/exchange-operations | |
parent | 2c260daf732ba0ae86fbd1d9e43f3e7098e68721 (diff) | |
download | gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.gz gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.tar.zst gsoc2013-evolution-dffd9d69efa547950e32ae3bfb291e0c527bf580.zip |
Fix for bug #437584
svn path=/trunk/; revision=33697
Diffstat (limited to 'plugins/exchange-operations')
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 5 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-mail-send-options.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 975370759a..99f53aad6a 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2007-06-07 Gilles Dartiguelongue <dartigug@esiee.fr> + + * exchange-mail-send-options.c: (org_gnome_exchange_send_options): + more compilation warnings cleanup, completes bug #437584 fixes + 2007-06-11 Milan Crha <mcrha@redhat.com> ** Fix for bug #325882 diff --git a/plugins/exchange-operations/exchange-mail-send-options.c b/plugins/exchange-operations/exchange-mail-send-options.c index 65533d8ed2..1a5f7f38f5 100644 --- a/plugins/exchange-operations/exchange-mail-send-options.c +++ b/plugins/exchange-operations/exchange-mail-send-options.c @@ -123,8 +123,8 @@ org_gnome_exchange_send_options (EPlugin *ep, EMEventTargetComposer *target) EAccount *account = NULL; char *temp = NULL; - account = e_msg_composer_get_preferred_account (composer) ; - temp = strstr (account->transport->url, "exchange") ; + account = e_msg_composer_get_preferred_account (composer); + temp = strstr (account->transport->url, "exchange"); if (!temp) { return; } @@ -134,8 +134,8 @@ org_gnome_exchange_send_options (EPlugin *ep, EMEventTargetComposer *target) g_print ("New dialog\n\n") ; dialog = exchange_sendoptions_dialog_new () ; } - exchange_sendoptions_dialog_run (dialog, composer) ; - g_signal_connect (dialog, "sod_response", G_CALLBACK (append_to_header), composer); + exchange_sendoptions_dialog_run (dialog, GTK_WIDGET (composer)); + g_signal_connect (dialog, "sod_response", G_CALLBACK (append_to_header), GTK_WIDGET (composer)); g_signal_connect (GTK_WIDGET (composer), "destroy", G_CALLBACK (send_options_commit), dialog); |