diff options
author | Milan Crha <mcrha@redhat.com> | 2012-03-01 21:24:27 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2012-03-01 21:24:27 +0800 |
commit | 68242e0edc3948341ecab0f8739cf16961c60235 (patch) | |
tree | 43c478c47d68e0570ca3fad9ba6d6bac7aad8b63 | |
parent | 78cd0d0a73fd9941fe715438f9f498257d147090 (diff) | |
download | gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar.gz gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar.bz2 gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar.lz gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar.xz gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.tar.zst gsoc2013-evolution-68242e0edc3948341ecab0f8739cf16961c60235.zip |
Bug #670934 - Was saving ESourceList first, rather than last
-rw-r--r-- | calendar/gui/dialogs/calendar-setup.c | 6 | ||||
-rw-r--r-- | modules/addressbook/addressbook-config.c | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/calendar-setup.c b/calendar/gui/dialogs/calendar-setup.c index 377fd5ca7e..bf77f8c70d 100644 --- a/calendar/gui/dialogs/calendar-setup.c +++ b/calendar/gui/dialogs/calendar-setup.c @@ -573,7 +573,7 @@ calendar_setup_edit_calendar (GtkWindow *parent, items = g_slist_prepend (items, &eccp_items[i]); e_config_add_items ((EConfig *) ec, items, eccp_free, sdialog); e_config_add_page_check ((EConfig *) ec, NULL, eccp_check_complete, sdialog); - g_signal_connect ( + g_signal_connect_after ( ec, "commit", G_CALLBACK (eccp_commit), sdialog); @@ -633,7 +633,7 @@ calendar_setup_edit_task_list (GtkWindow *parent, items = g_slist_prepend (items, &ectp_items[i]); e_config_add_items ((EConfig *) ec, items, eccp_free, sdialog); e_config_add_page_check ((EConfig *) ec, NULL, eccp_check_complete, sdialog); - g_signal_connect ( + g_signal_connect_after ( ec, "commit", G_CALLBACK (eccp_commit), sdialog); @@ -693,7 +693,7 @@ calendar_setup_edit_memo_list (GtkWindow *parent, items = g_slist_prepend (items, &ecmp_items[i]); e_config_add_items ((EConfig *) ec, items, eccp_free, sdialog); e_config_add_page_check ((EConfig *) ec, NULL, eccp_check_complete, sdialog); - g_signal_connect ( + g_signal_connect_after ( ec, "commit", G_CALLBACK (eccp_commit), sdialog); diff --git a/modules/addressbook/addressbook-config.c b/modules/addressbook/addressbook-config.c index 52283ea523..3871ceab3b 100644 --- a/modules/addressbook/addressbook-config.c +++ b/modules/addressbook/addressbook-config.c @@ -1335,7 +1335,7 @@ addressbook_config_edit_source (GtkWidget *parent, e_config_add_items ((EConfig *) ec, items, eabc_free, sdialog); e_config_add_page_check ((EConfig *) ec, NULL, eabc_check_complete, sdialog); - g_signal_connect ( + g_signal_connect_after ( ec, "commit", G_CALLBACK (eabc_commit), sdialog); |