aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test8c.h.ref
diff options
context:
space:
mode:
authorl10n daemon script <scripty@kde.org>2016-12-07 09:06:25 +0000
committerl10n daemon script <scripty@kde.org>2016-12-07 09:06:25 +0000
commit6e2a0fd0f427a665a9e65e6b226db10c5116c67f (patch)
tree6e051bf0819831b528c71e9454eaf0ab0dc1f238 /autotests/kconfig_compiler/test8c.h.ref
parentb7cc6bd8755515c0f84932926a44c42723c26c11 (diff)
parent4f9d7dde3a06da26d93e8f7ec98a283111a2d8c9 (diff)
downloadkconfig-5.29.0.tar.gz
kconfig-5.29.0.tar.bz2
Merge remote-tracking branch 'origin/master' into local_releasev5.29.0-rc2v5.29.0
Diffstat (limited to 'autotests/kconfig_compiler/test8c.h.ref')
-rw-r--r--autotests/kconfig_compiler/test8c.h.ref70
1 files changed, 0 insertions, 70 deletions
diff --git a/autotests/kconfig_compiler/test8c.h.ref b/autotests/kconfig_compiler/test8c.h.ref
deleted file mode 100644
index 8ed9962c..00000000
--- a/autotests/kconfig_compiler/test8c.h.ref
+++ /dev/null
@@ -1,70 +0,0 @@
-// This file is generated by kconfig_compiler_kf5 from test8c.kcfg.
-// All changes you do to this file will be lost.
-#ifndef TEST8C_H
-#define TEST8C_H
-
-#include <kconfigskeleton.h>
-#include <QCoreApplication>
-#include <QDebug>
-
-class Test8c : public KConfigSkeleton
-{
- public:
-
- static Test8c *self();
- static void instance(const QString& cfgfilename);
- static void instance(KSharedConfig::Ptr config);
- ~Test8c();
-
- /**
- Set Font
- */
- static
- void setFont( const QFont & v )
- {
- if (!self()->isImmutable( QStringLiteral( "Font" ) ))
- self()->mFont = v;
- }
-
- /**
- Get Font
- */
- static
- QFont font()
- {
- return self()->mFont;
- }
-
- /**
- Set TitleFont
- */
- static
- void setTitleFont( const QFont & v )
- {
- if (!self()->isImmutable( QStringLiteral( "TitleFont" ) ))
- self()->mTitleFont = v;
- }
-
- /**
- Get TitleFont
- */
- static
- QFont titleFont()
- {
- return self()->mTitleFont;
- }
-
- protected:
- Test8c(KSharedConfig::Ptr config);
- friend class Test8cHelper;
-
-
- // Group
- QFont mFont;
- QFont mTitleFont;
-
- private:
-};
-
-#endif
-