Core: Use override consistently

clang-tidy fixes from modernize-use-override check.

Change-Id: If33399d60e96cae766bbedbe30044ada411e862f
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Tobias Hunger
2018-05-07 15:00:03 +02:00
parent 0e71ed1bfc
commit 60d94ee7b5
64 changed files with 218 additions and 218 deletions

View File

@@ -52,7 +52,7 @@ public:
ExternalTool();
explicit ExternalTool(const ExternalTool *other);
~ExternalTool();
~ExternalTool() override;
QString id() const;
QString description() const;
@@ -123,7 +123,7 @@ class ExternalToolRunner : public QObject
Q_OBJECT
public:
ExternalToolRunner(const ExternalTool *tool);
~ExternalToolRunner();
~ExternalToolRunner() override;
bool hasError() const;
QString errorString() const;