summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/projectnodes.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-05-07 17:32:22 +0200
committerOrgad Shaneh <orgads@gmail.com>2018-05-07 16:45:08 +0000
commit98f779b8b9d668f28854541c6eb850c2c5de958d (patch)
tree46b65baeb1161832fe36d091a390023ba4da23c8 /src/plugins/projectexplorer/projectnodes.h
parent618923ddd21e25f1f4651bb0b22c8010da34fcfd (diff)
downloadqt-creator-98f779b8b9d668f28854541c6eb850c2c5de958d.tar.gz
ProjectExplorer: Consistently use nullptr
Fixed by clang-tidy modernize-use-nullptr. Change-Id: Ibf8ae8c4ecc0cf779ef311dbfec35cda04d36a4f Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/projectexplorer/projectnodes.h')
-rw-r--r--src/plugins/projectexplorer/projectnodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h
index 459a9e7385..909be008d9 100644
--- a/src/plugins/projectexplorer/projectnodes.h
+++ b/src/plugins/projectexplorer/projectnodes.h
@@ -325,8 +325,8 @@ public:
return Utils::nullopt;
}
- bool addFiles(const QStringList &filePaths, QStringList *notAdded = 0) override;
- bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = 0) override;
+ bool addFiles(const QStringList &filePaths, QStringList *notAdded = nullptr) override;
+ bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = nullptr) override;
bool deleteFiles(const QStringList &filePaths) override;
bool canRenameFile(const QString &filePath, const QString &newFilePath) override;
bool renameFile(const QString &filePath, const QString &newFilePath) override;