aboutsummaryrefslogtreecommitdiff
path: root/autotests/kconfig_compiler/test4.cpp.ref
diff options
context:
space:
mode:
Diffstat (limited to 'autotests/kconfig_compiler/test4.cpp.ref')
-rw-r--r--autotests/kconfig_compiler/test4.cpp.ref4
1 files changed, 2 insertions, 2 deletions
diff --git a/autotests/kconfig_compiler/test4.cpp.ref b/autotests/kconfig_compiler/test4.cpp.ref
index f6b4486f..9c0da454 100644
--- a/autotests/kconfig_compiler/test4.cpp.ref
+++ b/autotests/kconfig_compiler/test4.cpp.ref
@@ -9,7 +9,7 @@
class Test4Helper
{
public:
- Test4Helper() : q(0) {}
+ Test4Helper() : q(nullptr) {}
~Test4Helper() { delete q; }
Test4 *q;
};
@@ -173,6 +173,6 @@ QColor defaultColor[4] = { Qt::red, Qt::blue, Qt::green, Qt::black };
Test4::~Test4()
{
- s_globalTest4()->q = 0;
+ s_globalTest4()->q = nullptr;
}