aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-account-editor.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-01-18 06:38:15 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-01-18 06:38:15 +0800
commit1a2b409d707b19f29d896e44116b6bd31903c809 (patch)
treeeb9f7657cb2bbdedaab6db7e9b462e96f574748a /mail/mail-account-editor.h
parent26dd492af6580330cd6a893717a237d47a3efd01 (diff)
downloadgsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar.gz
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar.bz2
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar.lz
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar.xz
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.tar.zst
gsoc2013-evolution-1a2b409d707b19f29d896e44116b6bd31903c809.zip
Anna's dialog now supports SSL so we can get rid of the ssl-support
2001-01-17 Jeffrey Stedfast <fejj@ximian.com> * mail-account-editor.c (construct): Anna's dialog now supports SSL so we can get rid of the ssl-support checks. Also work around the fact that Anna's dialog doesn't have an optionmenu for the transport type, it's a label instead. (transport_type_init): Cast the transport_type widget to a GtkOptionMenu where appropriate as the widget that stores it is now generic. (apply_changes): Modify code to work with anna's dialog...*sigh* (ok_clicked): Alert the user that one or more servers failed to validate and allow him to continue anyway. svn path=/trunk/; revision=7601
Diffstat (limited to 'mail/mail-account-editor.h')
-rw-r--r--mail/mail-account-editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-account-editor.h b/mail/mail-account-editor.h
index cd782ef800..d9c318ea8d 100644
--- a/mail/mail-account-editor.h
+++ b/mail/mail-account-editor.h
@@ -53,7 +53,7 @@ struct _MailAccountEditor {
GtkEntry *organization;
GnomeFileEntry *signature;
- GtkWidget *source_type;
+ GtkWidget *source_type; /* this is generic because we don't know the widget-type */
GtkEntry *source_host;
GtkEntry *source_user;
GtkEntry *source_passwd;
@@ -62,7 +62,7 @@ struct _MailAccountEditor {
GtkOptionMenu *source_auth;
GtkCheckButton *source_ssl;
- GtkOptionMenu *transport_type;
+ GtkWidget *transport_type; /* Same here... */
GtkEntry *transport_host;
GtkOptionMenu *transport_auth;
GtkCheckButton *transport_ssl;