aboutsummaryrefslogtreecommitdiffstats
path: root/tools/qml/conf.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-15 16:09:09 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-18 12:39:28 +0200
commit72c3befaa24e7e6021898061b5bc5389554e7126 (patch)
tree5aedde3f9e942a5fbb4b25ac03138d4ede5dceea /tools/qml/conf.h
parente7618dba5b4e4b59331693e7b3a38601822b6ffb (diff)
Replace 0 pointer constants with nullptr
Replaced in most common patterns. Change-Id: Idcaff1f2e915f29922702d3600a2e5f1e2418a7a Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tools/qml/conf.h')
-rw-r--r--tools/qml/conf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qml/conf.h b/tools/qml/conf.h
index 7431276735..2c15ba4432 100644
--- a/tools/qml/conf.h
+++ b/tools/qml/conf.h
@@ -42,7 +42,7 @@ class PartialScene : public QObject
QML_ELEMENT
QML_ADDED_IN_VERSION(1, 0)
public:
- PartialScene(QObject *parent = 0) : QObject(parent)
+ PartialScene(QObject *parent = nullptr) : QObject(parent)
{}
const QUrl container() const { return m_container; }