aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/tutorials/extending-qml/chapter1-basics
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-06-30 11:28:32 +0200
committerUlf Hermann <ulf.hermann@qt.io>2021-06-30 14:16:49 +0200
commit1629fa0c6c000127d84956c0604804a896e8f9bf (patch)
treecd8bcfde2bfad7647da97d4a6365d6e97a8c3844 /examples/qml/tutorials/extending-qml/chapter1-basics
parent8635e5b300298c01ada7dc51bfca76c3f02bfc14 (diff)
Use nullptr rather than 0 for null pointers
Change-Id: I2921298ad2e04001bdee8824c56f01c203efb7d6 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io> Reviewed-by: Andrei Golubev <andrei.golubev@qt.io> Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'examples/qml/tutorials/extending-qml/chapter1-basics')
-rw-r--r--examples/qml/tutorials/extending-qml/chapter1-basics/piechart.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/qml/tutorials/extending-qml/chapter1-basics/piechart.h b/examples/qml/tutorials/extending-qml/chapter1-basics/piechart.h
index 687f8e2b4d..b2a0f60893 100644
--- a/examples/qml/tutorials/extending-qml/chapter1-basics/piechart.h
+++ b/examples/qml/tutorials/extending-qml/chapter1-basics/piechart.h
@@ -62,7 +62,7 @@ class PieChart : public QQuickPaintedItem
QML_ELEMENT
public:
- PieChart(QQuickItem *parent = 0);
+ PieChart(QQuickItem *parent = nullptr);
QString name() const;
void setName(const QString &name);