forked from qt-creator/qt-creator
valgrind: s/Q_DECL_OVERRIDE/override/g
Change-Id: I627db3b06f9c62f466e692674f1074c667d070b7 Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
@@ -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);
|
||||
};
|
||||
|
@@ -76,7 +76,7 @@ public:
|
||||
private:
|
||||
QWidget *createDetailsWidget(const QFont &font, const QModelIndex &errorIndex,
|
||||
QWidget *parent) const;
|
||||
QString textualRepresentation() const Q_DECL_OVERRIDE;
|
||||
QString textualRepresentation() const override;
|
||||
};
|
||||
|
||||
static QString makeFrameName(const Frame &frame, const QString &relativeTo,
|
||||
|
@@ -60,7 +60,7 @@ private slots:
|
||||
void suppressError();
|
||||
|
||||
private:
|
||||
QList<QAction *> customActions() const Q_DECL_OVERRIDE;
|
||||
QList<QAction *> customActions() const override;
|
||||
|
||||
QAction *m_suppressAction;
|
||||
QString m_defaultSuppFile;
|
||||
|
@@ -144,7 +144,7 @@ public:
|
||||
void startRemoteTool();
|
||||
MemcheckRunControl *createMemcheckRunControl(
|
||||
const Analyzer::AnalyzerStartParameters &sp,
|
||||
ProjectExplorer::RunConfiguration *runConfiguration) Q_DECL_OVERRIDE;
|
||||
ProjectExplorer::RunConfiguration *runConfiguration) override;
|
||||
};
|
||||
|
||||
} // namespace Internal
|
||||
|
Reference in New Issue
Block a user