valgrind: s/Q_DECL_OVERRIDE/override/g

Change-Id: I627db3b06f9c62f466e692674f1074c667d070b7
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-06-03 15:31:32 +02:00
committed by hjk
parent 6f5accfd98
commit 90a5fa6079
4 changed files with 7 additions and 7 deletions

View File

@@ -59,9 +59,9 @@ signals:
void suppressionCount(const QString &name, qint64 count);
protected:
QString progressTitle() const Q_DECL_OVERRIDE;
QStringList toolArguments() const Q_DECL_OVERRIDE;
ValgrindRunner *runner() Q_DECL_OVERRIDE;
QString progressTitle() const override;
QStringList toolArguments() const override;
ValgrindRunner *runner() override;
protected:
XmlProtocol::ThreadedParser m_parser;
@@ -77,7 +77,7 @@ public:
ProjectExplorer::RunConfiguration *runConfiguration);
protected:
QStringList toolArguments() const Q_DECL_OVERRIDE;
QStringList toolArguments() const override;
void startDebugger();
void appendLog(const QByteArray &data);
};