ios: use QTC_OVERRIDE consistently

Change-Id: I154b70896b359e09f53607bedd968a5e7a0ab148
Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
Fawzi Mohamed
2014-02-05 15:30:52 +01:00
parent 2d4cfc90fc
commit 242b839375
12 changed files with 77 additions and 63 deletions

View File

@@ -64,11 +64,13 @@ public:
bool canHandle(ProjectExplorer::Target *t) const QTC_OVERRIDE;
QList<ProjectExplorer::RunConfiguration *> runConfigurationsForNode(ProjectExplorer::Target *t,
ProjectExplorer::Node *n) QTC_OVERRIDE;
ProjectExplorer::Node *n
) QTC_OVERRIDE;
private:
ProjectExplorer::RunConfiguration *doCreate(ProjectExplorer::Target *parent, const Core::Id id);
ProjectExplorer::RunConfiguration *doCreate(ProjectExplorer::Target *parent,
const Core::Id id) QTC_OVERRIDE;
ProjectExplorer::RunConfiguration *doRestore(ProjectExplorer::Target *parent,
const QVariantMap &map);
const QVariantMap &map) QTC_OVERRIDE;
};
class IosRunControlFactory : public ProjectExplorer::IRunControlFactory