aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/gui/dialogs/calendar-setup.c6
-rw-r--r--modules/addressbook/addressbook-config.c2
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);