diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-03-07 13:07:32 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-03-07 13:07:32 +0800 |
commit | 53af5692dfd501eb6ba728abb934931f6d5c8ab8 (patch) | |
tree | 2c888320ed026744abc9c7b5c93a5c6e19b238e3 /mail/mail-account-editor.h | |
parent | ad3025ac3de6a07727e6b0fe6e307133377bbc77 (diff) | |
download | gsoc2013-evolution-53af5692dfd501eb6ba728abb934931f6d5c8ab8.tar.gz gsoc2013-evolution-53af5692dfd501eb6ba728abb934931f6d5c8ab8.tar.zst gsoc2013-evolution-53af5692dfd501eb6ba728abb934931f6d5c8ab8.zip |
Move the signal emittion to after the set_menu call so that it actually
2001-03-07 Jeffrey Stedfast <fejj@ximian.com>
* mail-account-editor.c (source_auth_init): Move the signal
emittion to after the set_menu call so that it actually works.
(transport_type_changed): Updated to manipulate the user/passwd
fields for the transport.
(construct): Updated to init the user/passwd fields for the
transport.
(transport_auth_init): Renamed. Also fill in the user/passwd
fields if available.
svn path=/trunk/; revision=8577
Diffstat (limited to 'mail/mail-account-editor.h')
-rw-r--r-- | mail/mail-account-editor.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mail/mail-account-editor.h b/mail/mail-account-editor.h index a750bdedb6..5bbdaa64b0 100644 --- a/mail/mail-account-editor.h +++ b/mail/mail-account-editor.h @@ -60,7 +60,7 @@ struct _MailAccountEditor { GtkEntry *source_user; GtkEntry *source_passwd; GtkEntry *source_path; - GtkCheckButton *save_passwd; + GtkCheckButton *source_save_passwd; GtkOptionMenu *source_auth; GtkCheckButton *source_ssl; @@ -75,6 +75,9 @@ struct _MailAccountEditor { GtkWidget *transport_type; /* Same here... */ GtkEntry *transport_host; GtkOptionMenu *transport_auth; + GtkEntry *transport_user; + GtkEntry *transport_passwd; + GtkCheckButton *transport_save_passwd; GtkCheckButton *transport_ssl; const CamelProvider *transport; |