Project: Sprinkle override over all the projects

Change-Id: I5e03ef5a9fee03473152f8a7511d75a1818c3e05
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2016-01-07 17:58:34 +01:00
committed by hjk
parent 5915b66fc8
commit d134bdfb13
8 changed files with 51 additions and 59 deletions

View File

@@ -54,18 +54,18 @@ class GenericProject : public ProjectExplorer::Project
public:
GenericProject(Manager *manager, const QString &filename);
~GenericProject();
~GenericProject() override;
QString filesFileName() const;
QString includesFileName() const;
QString configFileName() const;
QString displayName() const;
Core::IDocument *document() const;
ProjectExplorer::IProjectManager *projectManager() const;
QString displayName() const override;
Core::IDocument *document() const override;
ProjectExplorer::IProjectManager *projectManager() const override;
GenericProjectNode *rootProjectNode() const;
QStringList files(FilesMode fileMode) const;
GenericProjectNode *rootProjectNode() const override;
QStringList files(FilesMode fileMode) const override;
QStringList buildTargets() const;
@@ -86,7 +86,7 @@ public:
QStringList files() const;
protected:
RestoreResult fromMap(const QVariantMap &map, QString *errorMessage);
RestoreResult fromMap(const QVariantMap &map, QString *errorMessage) override;
private:
bool saveRawFileList(const QStringList &rawFileList);