summaryrefslogtreecommitdiff
path: root/examples/sslechoclient/main.cpp
diff options
context:
space:
mode:
authorKurt Pattyn <pattyn.kurt@gmail.com>2014-01-18 22:02:11 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-20 18:26:48 +0100
commit76cd00f8fdb249d866723ced0514041099f95a4b (patch)
tree11f9467e82926a6f62ae61c76b4e2888ab8b46bd /examples/sslechoclient/main.cpp
parent196617e5fb4f93655bbecea221b2dd350411fcae (diff)
downloadqtwebsockets-76cd00f8fdb249d866723ced0514041099f95a4b.tar.gz
Use QStringLiteral where appropriate
Change-Id: I608b555428aceafd7761a882cd4bd1fdb50d19b3 Reviewed-by: Richard J. Moore <rich@kde.org>
Diffstat (limited to 'examples/sslechoclient/main.cpp')
-rw-r--r--examples/sslechoclient/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/sslechoclient/main.cpp b/examples/sslechoclient/main.cpp
index beffe45..5345087 100644
--- a/examples/sslechoclient/main.cpp
+++ b/examples/sslechoclient/main.cpp
@@ -44,7 +44,7 @@
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
- SslEchoClient client(QUrl("wss://localhost:1234"));
+ SslEchoClient client(QUrl(QStringLiteral("wss://localhost:1234")));
Q_UNUSED(client);