aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test_qdebugcategory.h.ref
diff options
context:
space:
mode:
authorSergio Martins <iamsergio@gmail.com>2015-08-18 23:18:16 +0100
committerSergio Martins <iamsergio@gmail.com>2015-08-18 23:18:16 +0100
commit0c04b8cc4021934bbd6e0bd12788396689f65864 (patch)
tree0a288e9f74ef18bbbac6842633d9f29866aec5e8 /autotests/kconfig_compiler/test_qdebugcategory.h.ref
parent4d5a50a85bec95e60f11d1ac271df643e472ecf5 (diff)
downloadkconfig-0c04b8cc4021934bbd6e0bd12788396689f65864.tar.gz
kconfig-0c04b8cc4021934bbd6e0bd12788396689f65864.tar.bz2
Fix unit-tests, expected output changed, so update the tests.
Diffstat (limited to 'autotests/kconfig_compiler/test_qdebugcategory.h.ref')
-rw-r--r--autotests/kconfig_compiler/test_qdebugcategory.h.ref6
1 files changed, 3 insertions, 3 deletions
diff --git a/autotests/kconfig_compiler/test_qdebugcategory.h.ref b/autotests/kconfig_compiler/test_qdebugcategory.h.ref
index b6d16fc0..14e1ebac 100644
--- a/autotests/kconfig_compiler/test_qdebugcategory.h.ref
+++ b/autotests/kconfig_compiler/test_qdebugcategory.h.ref
@@ -21,7 +21,7 @@ class TestQCategory : public KConfigSkeleton
*/
void setColor( const QColor & v )
{
- if (!isImmutable( QString::fromLatin1( "Color" ) ))
+ if (!isImmutable( QStringLiteral( "Color" ) ))
mColor = v;
}
@@ -38,7 +38,7 @@ class TestQCategory : public KConfigSkeleton
*/
void setFooBar( const QString & v )
{
- if (!isImmutable( QString::fromLatin1( "FooBar" ) ))
+ if (!isImmutable( QStringLiteral( "FooBar" ) ))
mFooBar = v;
}
@@ -67,7 +67,7 @@ class TestQCategory : public KConfigSkeleton
v = 88;
}
- if (!isImmutable( QString::fromLatin1( "Age" ) ))
+ if (!isImmutable( QStringLiteral( "Age" ) ))
mAge = v;
}