From 9afc3499429b4754ce20cb7a47d9fac6bf37a8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20T=C5=91k=C3=A9s?= Date: Sat, 5 Sep 2015 18:22:58 +0300 Subject: [PATCH] Fix typo in default host. --- src/smtpclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smtpclient.h b/src/smtpclient.h index ee83884..f734aad 100644 --- a/src/smtpclient.h +++ b/src/smtpclient.h @@ -60,7 +60,7 @@ public: /* [1] Constructors and Destructors */ - SmtpClient(const QString & host = "locahost", int port = 25, ConnectionType ct = TcpConnection); + SmtpClient(const QString & host = "localhost", int port = 25, ConnectionType ct = TcpConnection); ~SmtpClient();