summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools')
-rw-r--r--tests/auto/tools/moc/pure-virtual-signals.h4
-rw-r--r--tests/auto/tools/qmakelib/tst_qmakelib.h8
2 files changed, 6 insertions, 6 deletions
diff --git a/tests/auto/tools/moc/pure-virtual-signals.h b/tests/auto/tools/moc/pure-virtual-signals.h
index d514ee8a04..f8b3a80f91 100644
--- a/tests/auto/tools/moc/pure-virtual-signals.h
+++ b/tests/auto/tools/moc/pure-virtual-signals.h
@@ -45,7 +45,7 @@ class PureVirtualSignalsImpl : public PureVirtualSignalsTest
Q_OBJECT
public:
signals:
- void mySignal();
- void mySignal2(int foo);
+ void mySignal() override;
+ void mySignal2(int foo) override;
};
#endif // PURE_VIRTUAL_SIGNALS_H
diff --git a/tests/auto/tools/qmakelib/tst_qmakelib.h b/tests/auto/tools/qmakelib/tst_qmakelib.h
index b4a4d95b6f..4bc62cbd99 100644
--- a/tests/auto/tools/qmakelib/tst_qmakelib.h
+++ b/tests/auto/tools/qmakelib/tst_qmakelib.h
@@ -87,14 +87,14 @@ private:
class QMakeTestHandler : public QMakeHandler {
public:
QMakeTestHandler() : QMakeHandler(), printed(false) {}
- virtual void message(int type, const QString &msg, const QString &fileName, int lineNo)
+ virtual void message(int type, const QString &msg, const QString &fileName, int lineNo) override
{ print(fileName, lineNo, type, msg); }
- virtual void fileMessage(int type, const QString &msg)
+ virtual void fileMessage(int type, const QString &msg) override
{ Q_UNUSED(type); doPrint(msg); }
- virtual void aboutToEval(ProFile *, ProFile *, EvalFileType) {}
- virtual void doneWithEval(ProFile *) {}
+ virtual void aboutToEval(ProFile *, ProFile *, EvalFileType) override {}
+ virtual void doneWithEval(ProFile *) override {}
void setExpectedMessages(const QStringList &msgs) { expected = msgs; }
QStringList expectedMessages() const { return expected; }