aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test3.h.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test3.h.ref')
-rw-r--r--autotests/kconfig_compiler/test3.h.ref8
1 files changed, 4 insertions, 4 deletions
diff --git a/autotests/kconfig_compiler/test3.h.ref b/autotests/kconfig_compiler/test3.h.ref
index bee48fb0..2b8ef539 100644
--- a/autotests/kconfig_compiler/test3.h.ref
+++ b/autotests/kconfig_compiler/test3.h.ref
@@ -22,7 +22,7 @@ class Test3 : public KConfigSkeleton
*/
void setAutoSave( bool v )
{
- if (!isImmutable( QString::fromLatin1( "AutoSave" ) ))
+ if (!isImmutable( QStringLiteral( "AutoSave" ) ))
mAutoSave = v;
}
@@ -47,7 +47,7 @@ class Test3 : public KConfigSkeleton
*/
void setBlubb( int v )
{
- if (!isImmutable( QString::fromLatin1( "Blubb" ) ))
+ if (!isImmutable( QStringLiteral( "Blubb" ) ))
mBlubb = v;
}
@@ -72,7 +72,7 @@ class Test3 : public KConfigSkeleton
*/
void setBlahBlah( const QString & v )
{
- if (!isImmutable( QString::fromLatin1( "BlahBlah" ) ))
+ if (!isImmutable( QStringLiteral( "BlahBlah" ) ))
mBlahBlah = v;
}
@@ -97,7 +97,7 @@ class Test3 : public KConfigSkeleton
*/
void setMyPassword( const QString & v )
{
- if (!isImmutable( QString::fromLatin1( "MyPassword" ) ))
+ if (!isImmutable( QStringLiteral( "MyPassword" ) ))
mMyPassword = v;
}