diff options
Diffstat (limited to 'autotests/kconfig_compiler/test_translation_kde.cpp.ref')
| -rw-r--r-- | autotests/kconfig_compiler/test_translation_kde.cpp.ref | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/autotests/kconfig_compiler/test_translation_kde.cpp.ref b/autotests/kconfig_compiler/test_translation_kde.cpp.ref new file mode 100644 index 00000000..5c11133d --- /dev/null +++ b/autotests/kconfig_compiler/test_translation_kde.cpp.ref @@ -0,0 +1,25 @@ +// This file is generated by kconfig_compiler_kf5 from test_translation.kcfg. +// All changes you do to this file will be lost. + +#include "test_translation_kde.h" + +#include <klocalizedstring.h> + +using namespace TestNameSpace; + +TestTranslationKde::TestTranslationKde(  ) +  : KConfigSkeleton( QLatin1String( "test_translation_rc" ) ) +{ +  setCurrentGroup( QLatin1String( "General" ) ); + +  KConfigSkeleton::ItemBool  *itemAutoSave; +  itemAutoSave = new KConfigSkeleton::ItemBool( currentGroup(), QLatin1String( "Auto Save" ), mAutoSave, false ); +  itemAutoSave->setLabel( i18n("Enable automatic saving of calendar") ); +  itemAutoSave->setWhatsThis( i18nc("@info:whatsthis", "Enable automatic saving of calendars to have calendars saved automatically.") ); +  addItem( itemAutoSave, QLatin1String( "AutoSave" ) ); +} + +TestTranslationKde::~TestTranslationKde() +{ +} + | 
