reorder parameters
This commit is contained in:
parent
056edd8570
commit
5dc7c60b4d
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue