forked from qt-creator/qt-creator
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user