diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-08 00:38:12 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2011-11-08 00:38:12 +0200 |
commit | a555d8f848e94a62d1cf159e5718341e68e73e92 (patch) | |
tree | 1b98604f6a07b81463f3b664c65d228f89ae7874 /client/Config.cpp | |
parent | c68a4124fc698c4b050df039075db4dd3d263080 (diff) | |
parent | c02539a547846c096ed493f70fcb440dcaec3978 (diff) |
Merge branch 'master' of ssh://sss.chaoslab.ru//home/private_git/proxy_ui
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); |