From ee2b394599ffe1242e3b7ae7d40b3469485dcd97 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Thu, 30 Nov 2017 13:36:08 +0100 Subject: Fix some clazy warning --- autotests/test_kconfigutils.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'autotests/test_kconfigutils.cpp') diff --git a/autotests/test_kconfigutils.cpp b/autotests/test_kconfigutils.cpp index 576ef784..a57f0592 100644 --- a/autotests/test_kconfigutils.cpp +++ b/autotests/test_kconfigutils.cpp @@ -36,19 +36,19 @@ void TestKConfigUtils::testParseGroupString_data() QTest::newRow("simple-group") << " group " - << (QStringList() << "group") + << (QStringList() << QStringLiteral("group")) << true ; QTest::newRow("sub-group") << "[group][sub]" - << (QStringList() << "group" << "sub") + << (QStringList() << QStringLiteral("group") << QStringLiteral("sub")) << true ; QTest::newRow("crazy-sub-group") << "[a\\ttab\\x5d[and some hex esc\\x61pe]" - << (QStringList() << "a\ttab" << "and some hex escape") + << (QStringList() << QStringLiteral("a\ttab") << QStringLiteral("and some hex escape")) << true ; -- cgit v1.2.1