diff options
Diffstat (limited to 'autotests/kconfig_compiler/test4main.cpp')
-rw-r--r-- | autotests/kconfig_compiler/test4main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autotests/kconfig_compiler/test4main.cpp b/autotests/kconfig_compiler/test4main.cpp index b4569ba9..72499230 100644 --- a/autotests/kconfig_compiler/test4main.cpp +++ b/autotests/kconfig_compiler/test4main.cpp @@ -29,9 +29,9 @@ int main(int argc, char **argv) QGuiApplication app(argc, argv); Q_UNUSED(app); { - KConfig initialConfig(QLatin1String("test4rc")); - KConfigGroup group = initialConfig.group(QLatin1String("Foo")); - group.writeEntry(QLatin1String("foo bar"), QStringLiteral("Value")); + KConfig initialConfig(QStringLiteral("test4rc")); + KConfigGroup group = initialConfig.group(QStringLiteral("Foo")); + group.writeEntry(QStringLiteral("foo bar"), QStringLiteral("Value")); } Test4 *t = Test4::self(); bool ok = QFile::exists(QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation) + "/test4rc"); |