aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/kconfigcompiler_test_signals.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 /autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp
parentf83b4b191d627b010192e0715536cb57c25519fb (diff)
downloadkconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.gz
kconfig-2034e3ce7593f04d251b634bfe2d71b30f15ea3a.tar.bz2
Prefer nullptr over Q_NULLPTR
Diffstat (limited to 'autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp')
-rw-r--r--autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp b/autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp
index b0c545fc..2a26c155 100644
--- a/autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp
+++ b/autotests/kconfig_compiler/kconfigcompiler_test_signals.cpp
@@ -79,7 +79,7 @@ void KConfigCompiler_Test_Signals::cleanupTestCase()
struct TestSettersArg {
// default constructor required for Q_DECLARE_METATYPE
- TestSettersArg() : obj(Q_NULLPTR) {}
+ TestSettersArg() : obj(nullptr) {}
template<typename T>
TestSettersArg(T* object) : obj(object) {
// we can also call static methods using object->foo() so this works for all four cases