diff options
author | Milian Wolff <milian.wolff@kdab.com> | 2013-10-23 10:36:01 +0200 |
---|---|---|
committer | Pierre Rossi <pierre.rossi@gmail.com> | 2013-11-01 13:57:52 +0100 |
commit | 708c0dd39d9f2a6f7d699364c6991d78bd30f9a8 (patch) | |
tree | 464a6766e8187656e3dc6972c6f6e349c67ea718 /src | |
parent | ca2d97950e78cf7c90c36776d8234a27b458b019 (diff) | |
download | qtwebchannel-708c0dd39d9f2a6f7d699364c6991d78bd30f9a8.tar.gz |
Use QStringLiteral here.
Change-Id: Idd32243173775ec49b4a51a55faa85e47e11a4f1
Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/qwebchannel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qwebchannel.cpp b/src/qwebchannel.cpp index e6c9d5a..f8d24e4 100644 --- a/src/qwebchannel.cpp +++ b/src/qwebchannel.cpp @@ -113,7 +113,7 @@ void QWebChannelPrivate::init() return; } - m_baseUrl = QString("127.0.0.1:%1%2").arg(port()).arg(QString::fromLatin1(m_secret)); + m_baseUrl = QStringLiteral("127.0.0.1:%1%2").arg(port()).arg(QString::fromLatin1(m_secret)); emit initialized(); } |