diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-02 02:32:53 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-02 02:32:53 +0800 |
commit | 271fc70bc3375774f84782c4769857b292406de8 (patch) | |
tree | 038e7bddb8e1ef029a8fd4f43fd47de4bf82d1e5 /mail/mail-account-gui.c | |
parent | 53e160a7713f73f14a9fc0e400c2304f7e91ae5f (diff) | |
download | gsoc2013-evolution-271fc70bc3375774f84782c4769857b292406de8.tar.gz gsoc2013-evolution-271fc70bc3375774f84782c4769857b292406de8.tar.zst gsoc2013-evolution-271fc70bc3375774f84782c4769857b292406de8.zip |
Call build_extra_conf() here too. This is when we REALLY want to call it
2001-06-01 Jeffrey Stedfast <fejj@ximian.com>
* mail-account-gui.c (source_type_changed): Call
build_extra_conf() here too. This is when we REALLY want to call
it anyway, not on switch-page because then we'd lose any data on
the Receive Options page if we never switch to that page before
applying the changes.
* mail-account-editor.c (construct): Don't connect to the
switch-page event, instead just call build_extra_conf() here with
the source->url.
svn path=/trunk/; revision=10082
Diffstat (limited to 'mail/mail-account-gui.c')
-rw-r--r-- | mail/mail-account-gui.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index 6e4cd27336..36e4ed68e9 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -271,6 +271,8 @@ source_type_changed (GtkWidget *widget, gpointer user_data) if (dwidget) gtk_widget_grab_focus (dwidget); + + mail_account_gui_build_extra_conf (gui, gui->account->source->url); } |