diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-03-06 06:56:14 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-03-06 06:56:14 +0800 |
commit | b0ee069191427a6fd3c2557042a35e4354a81f35 (patch) | |
tree | c6cf84265c7a66ebe430b9b41e380d75088cd0fa /mail/mail-account-gui.h | |
parent | 38342cf57ac6117e0de851b10ae7d3a14e92cc13 (diff) | |
download | gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar.gz gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar.bz2 gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar.lz gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar.xz gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.tar.zst gsoc2013-evolution-b0ee069191427a6fd3c2557042a35e4354a81f35.zip |
"use_ssl" can now be 3 options, modify the code to handle this.
2002-03-05 Jeffrey Stedfast <fejj@ximian.com>
* mail-account-gui.c (save_service): "use_ssl" can now be 3
options, modify the code to handle this.
(setup_service): Toggle the correct ssl option.
(source_type_changed): Show/hide the ssl hbox container widget.
(transport_type_changed): Same.
svn path=/trunk/; revision=15933
Diffstat (limited to 'mail/mail-account-gui.h')
-rw-r--r-- | mail/mail-account-gui.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/mail-account-gui.h b/mail/mail-account-gui.h index 190d983a83..8410fb93e4 100644 --- a/mail/mail-account-gui.h +++ b/mail/mail-account-gui.h @@ -43,7 +43,9 @@ typedef struct { GtkEntry *hostname; GtkEntry *username; GtkEntry *path; - GtkToggleButton *use_ssl; + GtkOptionMenu *use_ssl; + GtkWidget *ssl_selected; + GtkWidget *ssl_hbox; GtkWidget *no_ssl; GtkOptionMenu *authtype; GtkWidget *authitem; |