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
committerMatthew Barnes <mbarnes@redhat.com>2011-08-15 23:56:26 +0800
commitf5b711013dc1b1cbf5b846a45c634a530780db83 (patch)
tree6086d698d1a6cc1f1b13c415054d36a79d28c557 /mail/em-account-editor.h
parent31d1aa0441cbb187dd3cbe73ffc1e3b781c3b642 (diff)
downloadgsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar.gz
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar.bz2
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar.lz
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar.xz
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.tar.zst
gsoc2013-evolution-f5b711013dc1b1cbf5b846a45c634a530780db83.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;
};