diff options
author | Chris Toshok <toshok@ximian.com> | 2002-09-04 04:40:26 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-09-04 04:40:26 +0800 |
commit | fb668c002d303b89087636c874f06d799234e2dd (patch) | |
tree | 262f81b765e525e865aef454311b946542c5b275 | |
parent | 9859a941bcbedffc753841105346044417229378 (diff) | |
download | gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.gz gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.bz2 gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.lz gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.xz gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.zst gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.zip |
[ fixes #29699 ] call _set_source with a NULL source to fill in dialog
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).
svn path=/trunk/; revision=17954
-rw-r--r-- | addressbook/ChangeLog | 8 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 3 |
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); |