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 /addressbook/gui/component/addressbook-config.c | |
parent | 9859a941bcbedffc753841105346044417229378 (diff) | |
download | gsoc2013-evolution-fb668c002d303b89087636c874f06d799234e2dd.tar.gz 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
Diffstat (limited to 'addressbook/gui/component/addressbook-config.c')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); |