diff options
author | Kevin Funk <kfunk@kde.org> | 2017-01-16 18:17:34 +0100 |
---|---|---|
committer | Kevin Funk <kfunk@kde.org> | 2017-01-16 18:17:34 +0100 |
commit | 2034e3ce7593f04d251b634bfe2d71b30f15ea3a (patch) | |
tree | 9f96f54eca16f8a552f09f130ac248c8e35557b7 /src/gui/kconfigloader.h | |
parent | f83b4b191d627b010192e0715536cb57c25519fb (diff) | |
download | kconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.gz kconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.bz2 |
Prefer nullptr over Q_NULLPTR
Diffstat (limited to 'src/gui/kconfigloader.h')
-rw-r--r-- | src/gui/kconfigloader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/kconfigloader.h b/src/gui/kconfigloader.h index 341bdc4f..ffbd8e9b 100644 --- a/src/gui/kconfigloader.h +++ b/src/gui/kconfigloader.h @@ -109,7 +109,7 @@ public: * @param xml the xml data; must be valid KConfigXT data * @param parent optional QObject parent **/ - KConfigLoader(const QString &configFile, QIODevice *xml, QObject *parent = Q_NULLPTR); + KConfigLoader(const QString &configFile, QIODevice *xml, QObject *parent = nullptr); /** * Creates a KConfigSkeleton populated using the definition found in @@ -119,7 +119,7 @@ public: * @param xml the xml data; must be valid KConfigXT data * @param parent optional QObject parent **/ - KConfigLoader(KSharedConfigPtr config, QIODevice *xml, QObject *parent = Q_NULLPTR); + KConfigLoader(KSharedConfigPtr config, QIODevice *xml, QObject *parent = nullptr); /** * Creates a KConfigSkeleton populated using the definition found in @@ -129,7 +129,7 @@ public: * @param xml the xml data; must be valid KConfigXT data * @param parent optional QObject parent **/ - KConfigLoader(const KConfigGroup &config, QIODevice *xml, QObject *parent = Q_NULLPTR); + KConfigLoader(const KConfigGroup &config, QIODevice *xml, QObject *parent = nullptr); ~KConfigLoader(); |