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/kconfig_compiler/test9main.cpp | |
parent | 61995dafce78c1065d4eacba81673a7959a96cc9 (diff) | |
download | kconfig-ee2b394599ffe1242e3b7ae7d40b3469485dcd97.tar.gz kconfig-ee2b394599ffe1242e3b7ae7d40b3469485dcd97.tar.bz2 |
Fix some clazy warning
Diffstat (limited to 'autotests/kconfig_compiler/test9main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test9main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/test9main.cpp b/autotests/kconfig_compiler/test9main.cpp index 28205ee5..8ec98adb 100644 --- a/autotests/kconfig_compiler/test9main.cpp +++ b/autotests/kconfig_compiler/test9main.cpp @@ -34,7 +34,7 @@ int main(int argc, char **argv) // add another path QStringList newlist; - myPathsList2 << QDir::homePath() + QString::fromLatin1("/.kde"); + myPathsList2 << QDir::homePath() + QLatin1String("/.kde"); qWarning() << myPathsList2; t->setMyPathsList2(myPathsList2); |