aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test6.h.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test6.h.ref')
-rw-r--r--autotests/kconfig_compiler/test6.h.ref6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotests/kconfig_compiler/test6.h.ref b/autotests/kconfig_compiler/test6.h.ref
index 7a9998e2..ddc435a1 100644
--- a/autotests/kconfig_compiler/test6.h.ref
+++ b/autotests/kconfig_compiler/test6.h.ref
@@ -19,7 +19,7 @@ class Test6 : public KConfigSkeleton
*/
void setColor( const QColor & v )
{
- if (!isImmutable( QString::fromLatin1( "Color" ) ))
+ if (!isImmutable( QStringLiteral( "Color" ) ))
mColor = v;
}
@@ -36,7 +36,7 @@ class Test6 : public KConfigSkeleton
*/
void setFooBar( const QString & v )
{
- if (!isImmutable( QString::fromLatin1( "FooBar" ) ))
+ if (!isImmutable( QStringLiteral( "FooBar" ) ))
mFooBar = v;
}
@@ -65,7 +65,7 @@ class Test6 : public KConfigSkeleton
v = 88;
}
- if (!isImmutable( QString::fromLatin1( "Age" ) ))
+ if (!isImmutable( QStringLiteral( "Age" ) ))
mAge = v;
}