diff options
Diffstat (limited to 'client/Config.cpp')
-rwxr-xr-x | client/Config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Config.cpp b/client/Config.cpp index 31e5189..acb3684 100755 --- a/client/Config.cpp +++ b/client/Config.cpp @@ -96,7 +96,7 @@ Config::Config(): QObject(), StaticProxySpeedLow(50) connect(configUpdateTimer, SIGNAL(timeout()), this, SLOT(updateConfig())); - client = new SslClient(servers[0].host); + client = new SslClient(QString::fromStdString(servers[0].host)); connect(client, SIGNAL(ReplyRecieved(SslClient::RequestType&, QByteArray&)), this, SLOT(gotServerReply(SslClient::RequestType&, QByteArray&))); client->SendRequest(SslClient::Config); |