forked from qt-creator/qt-creator
GenericProjectManager: Modernize
modernize-use-auto modernize-use-equals-default modernize-use-nullptr modernize-use-override Change-Id: I67c9895f46efe8646176718949561240c7175c53 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -135,12 +135,12 @@ public:
|
||||
|| action == Rename;
|
||||
}
|
||||
|
||||
bool addFiles(const QStringList &filePaths, QStringList * = 0) override
|
||||
bool addFiles(const QStringList &filePaths, QStringList * = nullptr) override
|
||||
{
|
||||
return m_project->addFiles(filePaths);
|
||||
}
|
||||
|
||||
bool removeFiles(const QStringList &filePaths, QStringList * = 0) override
|
||||
bool removeFiles(const QStringList &filePaths, QStringList * = nullptr) override
|
||||
{
|
||||
return m_project->removeFiles(filePaths);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user