aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test_translation_qt.cpp.ref
blob: 1771f08fe9ebb07867ac20b8598ba133dc5412af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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_qt.h"

using namespace TestNameSpace;

TestTranslationQt::TestTranslationQt( )
  : KConfigSkeleton( QStringLiteral( "test_translation_rc" ) )
{
  setCurrentGroup( QStringLiteral( "General" ) );

  KConfigSkeleton::ItemBool  *itemAutoSave;
  itemAutoSave = new KConfigSkeleton::ItemBool( currentGroup(), QStringLiteral( "Auto Save" ), mAutoSave, false );
  itemAutoSave->setLabel( QCoreApplication::translate("TestTranslationQt", "Enable automatic saving of calendar") );
  itemAutoSave->setWhatsThis( /*: @info:whatsthis */ QCoreApplication::translate("TestTranslationQt", "Enable automatic saving of calendars to have calendars saved automatically.") );
  addItem( itemAutoSave, QStringLiteral( "AutoSave" ) );
}

TestTranslationQt::~TestTranslationQt()
{
}