aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test4main.cpp
diff options
context:
space:
mode:
authorAhmad Samir <a.samirh78@gmail.com>2021-02-04 14:06:34 +0200
committerAhmad Samir <a.samirh78@gmail.com>2021-02-06 22:10:10 +0200
commitbce76d2e73a462de673d18dbf6d94da0c592bf08 (patch)
tree455687733ca90a74ecf8c4c90100695332378bf4 /autotests/kconfig_compiler/test4main.cpp
parent2ac45198cf101f094cf8d94f3a546a57624e59f5 (diff)
downloadkconfig-bce76d2e73a462de673d18dbf6d94da0c592bf08.tar.gz
kconfig-bce76d2e73a462de673d18dbf6d94da0c592bf08.tar.bz2
Less implicit cast from ASCII
NO_CHANGELOG
Diffstat (limited to 'autotests/kconfig_compiler/test4main.cpp')
-rw-r--r--autotests/kconfig_compiler/test4main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/test4main.cpp b/autotests/kconfig_compiler/test4main.cpp
index 2d48e440..8792842f 100644
--- a/autotests/kconfig_compiler/test4main.cpp
+++ b/autotests/kconfig_compiler/test4main.cpp
@@ -19,7 +19,7 @@ int main(int argc, char **argv)
group.writeEntry(QStringLiteral("foo bar"), QStringLiteral("Value"));
}
Test4 *t = Test4::self();
- bool ok = QFile::exists(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/test4rc");
+ const bool ok = QFile::exists(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + QLatin1String{"/test4rc"});
if (!ok) {
qWarning() << "config file was not created!";
}