summaryrefslogtreecommitdiffstats
path: root/tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-07 13:05:48 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-07 23:02:47 +0200
commit564b59d903683b14c75b72a3e93367717f201def (patch)
tree03ffe749d83dce84429a7db484bf92795047036f /tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h
parentb5fc1e4e2643e73d3b44c483d159529f8deb8af1 (diff)
Another round of replacing 0 with nullptr
This time based on grepping to also include documentation, tests and examples previously missed by the automatic tool. Change-Id: Ied1703f4bcc470fbc275f759ed5b7c588a5c4e9f Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h')
-rw-r--r--tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h b/tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h
index e28575e50b..ba566cbbac 100644
--- a/tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h
+++ b/tests/auto/other/qabstractitemmodelutils/dynamictreemodel.h
@@ -39,7 +39,7 @@ class DynamicTreeModel : public QAbstractItemModel
Q_OBJECT
public:
- DynamicTreeModel(QObject *parent = 0);
+ DynamicTreeModel(QObject *parent = nullptr);
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &index) const override;
@@ -86,7 +86,7 @@ class ModelChangeCommand : public QObject
Q_OBJECT
public:
- ModelChangeCommand(DynamicTreeModel *model, QObject *parent = 0);
+ ModelChangeCommand(DynamicTreeModel *model, QObject *parent = nullptr);
virtual ~ModelChangeCommand()
{
@@ -132,7 +132,7 @@ class ModelInsertCommand : public ModelChangeCommand
public:
- ModelInsertCommand(DynamicTreeModel *model, QObject *parent = 0);
+ ModelInsertCommand(DynamicTreeModel *model, QObject *parent = nullptr);
virtual ~ModelInsertCommand()
{
}
@@ -179,7 +179,7 @@ class ModelResetCommand : public ModelMoveCommand
{
Q_OBJECT
public:
- ModelResetCommand(DynamicTreeModel *model, QObject *parent = 0);
+ ModelResetCommand(DynamicTreeModel *model, QObject *parent = nullptr);
virtual ~ModelResetCommand();
@@ -195,7 +195,7 @@ class ModelResetCommandFixed : public ModelMoveCommand
{
Q_OBJECT
public:
- ModelResetCommandFixed(DynamicTreeModel *model, QObject *parent = 0);
+ ModelResetCommandFixed(DynamicTreeModel *model, QObject *parent = nullptr);
virtual ~ModelResetCommandFixed();