aboutsummaryrefslogtreecommitdiff
path: root/src/core/kcoreconfigskeleton_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/kcoreconfigskeleton_p.h')
-rw-r--r--src/core/kcoreconfigskeleton_p.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/core/kcoreconfigskeleton_p.h b/src/core/kcoreconfigskeleton_p.h
index 006bd45f..d854cc43 100644
--- a/src/core/kcoreconfigskeleton_p.h
+++ b/src/core/kcoreconfigskeleton_p.h
@@ -15,8 +15,10 @@ class KCoreConfigSkeletonPrivate
{
public:
KCoreConfigSkeletonPrivate()
- : mCurrentGroup(QStringLiteral("No Group")), mUseDefaults(false)
- {}
+ : mCurrentGroup(QStringLiteral("No Group"))
+ , mUseDefaults(false)
+ {
+ }
~KCoreConfigSkeletonPrivate()
{
KConfigSkeletonItem::List::ConstIterator it;
@@ -40,7 +42,8 @@ public:
KConfigSkeletonItemPrivate()
: mIsImmutable(true)
, mWriteFlags(KConfigBase::Normal)
- {}
+ {
+ }
virtual ~KConfigSkeletonItemPrivate();
bool mIsImmutable; ///< Indicates this item is immutable
KConfigBase::WriteConfigFlags mWriteFlags; ///< The flags to pass to calls of writeEntry() and revertToDefault()
@@ -79,5 +82,4 @@ public:
std::function<void()> mNotifyFunction;
};
-
#endif