diff options
author | Montel Laurent <montel@kde.org> | 2017-11-30 13:36:08 +0100 |
---|---|---|
committer | Montel Laurent <montel@kde.org> | 2017-11-30 13:36:08 +0100 |
commit | ee2b394599ffe1242e3b7ae7d40b3469485dcd97 (patch) | |
tree | b3158f3dc11d26bc5676015b4c56e55a85f4c71b /autotests/test_kconfigutils.cpp | |
parent | 61995dafce78c1065d4eacba81673a7959a96cc9 (diff) | |
download | kconfig-ee2b394599ffe1242e3b7ae7d40b3469485dcd97.tar.gz kconfig-ee2b394599ffe1242e3b7ae7d40b3469485dcd97.tar.bz2 |
Fix some clazy warning
Diffstat (limited to 'autotests/test_kconfigutils.cpp')
-rw-r--r-- | autotests/test_kconfigutils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 ; |