aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/gui/component/addressbook-config.c3
2 files changed, 11 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 99ead9e409..1a634fc40c 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,11 @@
+2002-09-03 Chris Toshok <toshok@ximian.com>
+
+ [ fixes #29699 ]
+ * gui/component/addressbook-config.c
+ (addressbook_add_server_druid): call _set_source with a NULL
+ source to fill in dialog settings that are set from the option
+ menus (like the SSL setting).
+
2002-09-03 Ettore Perazzoli <ettore@ximian.com>
* gui/component/addressbook.c (delete_contact_cb): Fix typo
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c
index 3e9b342f40..40f47b0ae8 100644
--- a/addressbook/gui/component/addressbook-config.c
+++ b/addressbook/gui/component/addressbook-config.c
@@ -1062,6 +1062,9 @@ addressbook_add_server_druid (AddressbookDialog *dialog)
gtk_signal_connect (GTK_OBJECT(sdialog->window), "destroy",
GTK_SIGNAL_FUNC(addressbook_source_dialog_destroy), sdialog);
+ /* make sure we fill in the default values */
+ addressbook_source_dialog_set_source (sdialog, NULL);
+
gtk_window_set_modal (GTK_WINDOW (sdialog->window), TRUE);
gtk_widget_show (sdialog->window);