summaryrefslogtreecommitdiffstats
path: root/tests/auto/qnearfieldtagtype2
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-05-14 14:10:33 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-15 10:10:05 +0200
commit10cd7743aa8c30fc3a5f8485ba4c4aad6bb5365e (patch)
tree4498b82fc104cf4e675241412d147de61147ed55 /tests/auto/qnearfieldtagtype2
parentde750dc7971b3dfda350b5602501b6215ef3da8d (diff)
Utilize QStringLiteral where possible
The only exception are generated files and cases where QLatin1String based overloads are used (e.g. during QString comparisons) Change-Id: I6f36789fb8acb3b30c1dc1f8a920b118a979d74f Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'tests/auto/qnearfieldtagtype2')
-rw-r--r--tests/auto/qnearfieldtagtype2/tst_qnearfieldtagtype2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qnearfieldtagtype2/tst_qnearfieldtagtype2.cpp b/tests/auto/qnearfieldtagtype2/tst_qnearfieldtagtype2.cpp
index 6fac6571..d01ce24a 100644
--- a/tests/auto/qnearfieldtagtype2/tst_qnearfieldtagtype2.cpp
+++ b/tests/auto/qnearfieldtagtype2/tst_qnearfieldtagtype2.cpp
@@ -313,7 +313,7 @@ void tst_QNearFieldTagType2::ndefMessages()
QList<QNdefMessage> messages;
QNdefNfcTextRecord textRecord;
- textRecord.setText(QLatin1String("tst_QNearFieldTagType2::ndefMessages"));
+ textRecord.setText(QStringLiteral("tst_QNearFieldTagType2::ndefMessages"));
QNdefMessage message;
message.append(textRecord);