diff options
author | Laurent Montel <montel@kde.org> | 2019-08-28 13:58:56 +0200 |
---|---|---|
committer | Laurent Montel <montel@kde.org> | 2019-08-28 13:59:13 +0200 |
commit | b0191f68562d896a3e962a534ff0c26ae72de2de (patch) | |
tree | 77e3480f9ac0f352e95c269dfff8d70cad7d0a1e /autotests/kconfig_compiler/test4main.cpp | |
parent | b4d33f4419f8f8626f690e11e46dcff25586b35b (diff) | |
download | kconfig-b0191f68562d896a3e962a534ff0c26ae72de2de.tar.gz kconfig-b0191f68562d896a3e962a534ff0c26ae72de2de.tar.bz2 |
GIT_SILENT: use QLatin1String
Diffstat (limited to 'autotests/kconfig_compiler/test4main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test4main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/test4main.cpp b/autotests/kconfig_compiler/test4main.cpp index 72499230..2c63e13e 100644 --- a/autotests/kconfig_compiler/test4main.cpp +++ b/autotests/kconfig_compiler/test4main.cpp @@ -38,7 +38,7 @@ int main(int argc, char **argv) if (!ok) { qWarning() << "config file was not created!"; } - if (t->fooBar() != QStringLiteral("Value")) { + if (t->fooBar() != QLatin1String("Value")) { qWarning() << "wrong value for foo bar:" << t->fooBar(); } delete t; |