summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp')
-rw-r--r--tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp b/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp
index a73279018d..266ed0de05 100644
--- a/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp
+++ b/tests/auto/widgets/dialogs/qdialog/tst_qdialog.cpp
@@ -104,12 +104,14 @@ public:
bool wasActive() const { return mWasActive; }
bool wasModalWindow() const { return mWasModalWindow; }
- int exec() {
+ int exec() override
+ {
tId = startTimer(300);
return QDialog::exec();
}
protected:
- void timerEvent(QTimerEvent *event) {
+ void timerEvent(QTimerEvent *event) override
+ {
if (tId == event->timerId()) {
killTimer(tId);
mWasActive = isActiveWindow();
@@ -414,7 +416,7 @@ class TestRejectDialog : public QDialog
{
public:
TestRejectDialog() : cancelReject(false), called(0) {}
- void reject()
+ void reject() override
{
called++;
if (!cancelReject)