aboutsummaryrefslogtreecommitdiff
path: root/src/core/kconfig.cpp
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-01-16 18:17:34 +0100
committerKevin Funk <kfunk@kde.org>2017-01-16 18:17:34 +0100
commit2034e3ce7593f04d251b634bfe2d71b30f15ea3a (patch)
tree9f96f54eca16f8a552f09f130ac248c8e35557b7 /src/core/kconfig.cpp
parentf83b4b191d627b010192e0715536cb57c25519fb (diff)
downloadkconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.gz
kconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.bz2
Prefer nullptr over Q_NULLPTR
Diffstat (limited to 'src/core/kconfig.cpp')
-rw-r--r--src/core/kconfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/kconfig.cpp b/src/core/kconfig.cpp
index e0e73b8b..acc7a761 100644
--- a/src/core/kconfig.cpp
+++ b/src/core/kconfig.cpp
@@ -68,7 +68,7 @@ static const Qt::CaseSensitivity sPathCaseSensitivity = Qt::CaseInsensitive;
KConfigPrivate::KConfigPrivate(KConfig::OpenFlags flags,
QStandardPaths::StandardLocation resourceType)
- : openFlags(flags), resourceType(resourceType), mBackend(Q_NULLPTR),
+ : openFlags(flags), resourceType(resourceType), mBackend(nullptr),
bDynamicBackend(true), bDirty(false), bReadDefaults(false),
bFileImmutable(false), bForceGlobal(false), bSuppressGlobal(false),
configState(KConfigBase::NoAccess)