Commit 5dc7c60b authored by Fabio Bas's avatar Fabio Bas
Browse files

reorder parameters

parent 056edd85
...@@ -25,12 +25,12 @@ ...@@ -25,12 +25,12 @@
/* [1] Constructors and destructors */ /* [1] Constructors and destructors */
SmtpClient::SmtpClient(const QString & host, int port, ConnectionType connectionType) : SmtpClient::SmtpClient(const QString & host, int port, ConnectionType connectionType) :
socket(NULL),
name("localhost"), name("localhost"),
authMethod(AuthPlain), authMethod(AuthPlain),
connectionTimeout(5000), connectionTimeout(5000),
responseTimeout(5000), responseTimeout(5000),
sendMessageTimeout(60000), sendMessageTimeout(60000)
socket(NULL)
{ {
setConnectionType(connectionType); setConnectionType(connectionType);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment