From 1de736bb5e48846e7a5c2d8c897a4613ac95ced0 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 26 Apr 2018 10:27:23 +0200 Subject: [PATCH] ProjectExplorer: Fix warning about nullptr Change-Id: Iaf1c30560d3ebe12430716808319d059431be30d Reviewed-by: hjk --- src/plugins/projectexplorer/projectnodes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/projectnodes.h b/src/plugins/projectexplorer/projectnodes.h index b586655e5a6..1b5a10eb9ea 100644 --- a/src/plugins/projectexplorer/projectnodes.h +++ b/src/plugins/projectexplorer/projectnodes.h @@ -254,8 +254,8 @@ public: bool supportsAction(ProjectAction action, const Node *node) const override; - virtual bool addFiles(const QStringList &filePaths, QStringList *notAdded = 0); - virtual bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = 0); + virtual bool addFiles(const QStringList &filePaths, QStringList *notAdded = nullptr); + virtual bool removeFiles(const QStringList &filePaths, QStringList *notRemoved = nullptr); virtual bool deleteFiles(const QStringList &filePaths); virtual bool canRenameFile(const QString &filePath, const QString &newFilePath); virtual bool renameFile(const QString &filePath, const QString &newFilePath);