summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/settings.h
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/libmailwrapper/settings.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/settings.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/noncore/net/mail/libmailwrapper/settings.h b/noncore/net/mail/libmailwrapper/settings.h
index 2104997..8d7df92 100644
--- a/noncore/net/mail/libmailwrapper/settings.h
+++ b/noncore/net/mail/libmailwrapper/settings.h
@@ -31,6 +31,10 @@ public:
void setSSL( bool b ) { ssl = b; }
bool getSSL() { return ssl; }
+ void setConnectionType( int x ) { connectionType = x; }
+ int ConnectionType() { return connectionType; }
+
+
void setOffline(bool b) {offline = b;}
bool getOffline()const{return offline;}
@@ -41,6 +45,7 @@ public:
protected:
QString accountName, type, server, port, user, password;
bool ssl;
+ int connectionType;
bool offline;
};