aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/protected.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-25 09:33:27 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-25 10:43:56 +0200
commitddfbbd346b522703a5b6f8d274a7f79983e5f319 (patch)
tree6ebd312287a1398b4b619b37045370cbeb83e1d1 /sources/shiboken2/tests/libsample/protected.h
parent2eced73f6b8dd9f568e84e78f786a0ec8d6dd429 (diff)
shiboken: Introduce nullptr
Apply Fixits by Qt Creator with some amendments. Change-Id: Ie8300ddb834adb8b649324562f2c912a4e8cf4ce Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/shiboken2/tests/libsample/protected.h')
-rw-r--r--sources/shiboken2/tests/libsample/protected.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/shiboken2/tests/libsample/protected.h b/sources/shiboken2/tests/libsample/protected.h
index 6cdc66e2b..0f4fbf299 100644
--- a/sources/shiboken2/tests/libsample/protected.h
+++ b/sources/shiboken2/tests/libsample/protected.h
@@ -50,7 +50,7 @@ protected:
inline int protectedSum(int a0, int a1) { return a0 + a1; }
inline int modifiedProtectedSum(int a0, int a1) { return a0 + a1; }
inline static const char* protectedStatic() { return "protectedStatic"; }
- inline const char* dataTypeName(void *data = 0) const { return "pointer"; }
+ inline const char* dataTypeName(void *data = nullptr) const { return "pointer"; }
inline const char* dataTypeName(int data) const { return "integer"; }
private:
@@ -130,8 +130,8 @@ public:
: protectedValueTypeProperty(Point(0, 0)),
protectedProperty(0),
protectedEnumProperty(Event::NO_EVENT),
- protectedValueTypePointerProperty(0),
- protectedObjectTypeProperty(0)
+ protectedValueTypePointerProperty(nullptr),
+ protectedObjectTypeProperty(nullptr)
{}
protected:
// This is deliberately the first member to test wrapper registration