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