aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-account-editor.h
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-08-04 10:13:49 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-09-14 20:08:50 +0800
commitdb2dbe5ecbe4791dc01acec818f79e8d869db3e5 (patch)
tree508146efdea677e54e09f2267d4144f0b075758b /mail/em-account-editor.h
parenta69440840e00fcc360aaac158c3982aa4eef2130 (diff)
downloadgsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar.gz
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar.bz2
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar.lz
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar.xz
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.tar.zst
gsoc2013-evolution-db2dbe5ecbe4791dc01acec818f79e8d869db3e5.zip
EMAccountEditor: Utilize CamelSettings.
Simplifies the code overall, since now we can bind widget properties to settings properties and omit a bunch of callback functions. Plus now we can initialize the settings widgets with proper defaults according to the property specifications of CamelSettings classes.
Diffstat (limited to 'mail/em-account-editor.h')
-rw-r--r--mail/em-account-editor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/em-account-editor.h b/mail/em-account-editor.h
index a34fd8af2d..3416b5d161 100644
--- a/mail/em-account-editor.h
+++ b/mail/em-account-editor.h
@@ -59,13 +59,13 @@ struct _server_data {
const gchar *recv;
const gchar *send;
const gchar *proto;
- const gchar *ssl;
+ CamelNetworkSecurityMethod security_method;
const gchar *send_user;
const gchar *recv_user;
const gchar *send_port;
const gchar *recv_port;
- const gchar *send_sock;
- const gchar *recv_sock;
+ CamelNetworkSecurityMethod send_security_method;
+ CamelNetworkSecurityMethod recv_security_method;
const gchar *send_auth;
const gchar *recv_auth;
};