diff options
| author | Sergio Martins <iamsergio@gmail.com> | 2015-08-18 23:18:16 +0100 | 
|---|---|---|
| committer | Sergio Martins <iamsergio@gmail.com> | 2015-08-18 23:18:16 +0100 | 
| commit | 0c04b8cc4021934bbd6e0bd12788396689f65864 (patch) | |
| tree | 0a288e9f74ef18bbbac6842633d9f29866aec5e8 /autotests/kconfig_compiler/test6.h.ref | |
| parent | 4d5a50a85bec95e60f11d1ac271df643e472ecf5 (diff) | |
| download | kconfig-0c04b8cc4021934bbd6e0bd12788396689f65864.tar.gz kconfig-0c04b8cc4021934bbd6e0bd12788396689f65864.tar.bz2  | |
Fix unit-tests, expected output changed, so update the tests.
Diffstat (limited to 'autotests/kconfig_compiler/test6.h.ref')
| -rw-r--r-- | autotests/kconfig_compiler/test6.h.ref | 6 | 
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;      }  | 
