diff options
author | Montel Laurent <montel@kde.org> | 2015-10-28 08:29:32 +0100 |
---|---|---|
committer | Montel Laurent <montel@kde.org> | 2015-10-30 23:31:09 +0100 |
commit | 75d11cc64fee09189bfe8f968f0558e3d1000db8 (patch) | |
tree | 6ec1b971dd7859382b9ff346767c9d464cfed2aa /autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref | |
parent | 91d0b11a87d7d547f204ce8d16baa710520f55ac (diff) | |
download | kconfig-75d11cc64fee09189bfe8f968f0558e3d1000db8.tar.gz kconfig-75d11cc64fee09189bfe8f968f0558e3d1000db8.tar.bz2 |
Use QStringLiteral in generated code
REVIEW: 125833
Diffstat (limited to 'autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref')
-rw-r--r-- | autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref b/autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref index 66fc4cb9..6704c005 100644 --- a/autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref +++ b/autotests/kconfig_compiler/test_translation_kde_domain.cpp.ref @@ -8,15 +8,15 @@ using namespace TestNameSpace; TestTranslationKdeDomain::TestTranslationKdeDomain( ) - : KConfigSkeleton( QLatin1String( "test_translation_rc" ) ) + : KConfigSkeleton( QStringLiteral( "test_translation_rc" ) ) { - setCurrentGroup( QLatin1String( "General" ) ); + setCurrentGroup( QStringLiteral( "General" ) ); KConfigSkeleton::ItemBool *itemAutoSave; - itemAutoSave = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Auto Save" ), mAutoSave, false ); + itemAutoSave = new KConfigSkeleton::ItemBool( currentGroup(), QStringLiteral( "Auto Save" ), mAutoSave, false ); itemAutoSave->setLabel( i18nd("test-kcfg-kde", "Enable automatic saving of calendar") ); itemAutoSave->setWhatsThis( i18ndc("test-kcfg-kde", "@info:whatsthis", "Enable automatic saving of calendars to have calendars saved automatically.") ); - addItem( itemAutoSave, QLatin1String( "AutoSave" ) ); + addItem( itemAutoSave, QStringLiteral( "AutoSave" ) ); } TestTranslationKdeDomain::~TestTranslationKdeDomain() |