aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test_dpointer.cpp.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test_dpointer.cpp.ref')
-rw-r--r--autotests/kconfig_compiler/test_dpointer.cpp.ref4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfig_compiler/test_dpointer.cpp.ref b/autotests/kconfig_compiler/test_dpointer.cpp.ref
index 17ed2091..dd2a4c04 100644
--- a/autotests/kconfig_compiler/test_dpointer.cpp.ref
+++ b/autotests/kconfig_compiler/test_dpointer.cpp.ref
@@ -48,7 +48,7 @@ class TestDPointerPrivate
class TestDPointerHelper
{
public:
- TestDPointerHelper() : q(0) {}
+ TestDPointerHelper() : q(nullptr) {}
~TestDPointerHelper() { delete q; }
TestDPointer *q;
};
@@ -343,6 +343,6 @@ KConfigSkeleton::ItemFont *TestDPointer::timeBarFontItem()
TestDPointer::~TestDPointer()
{
delete d;
- s_globalTestDPointer()->q = 0;
+ s_globalTestDPointer()->q = nullptr;
}