aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/runextensions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/utils/runextensions.h')
-rw-r--r--src/libs/utils/runextensions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/utils/runextensions.h b/src/libs/utils/runextensions.h
index ef595c3291..30590ade30 100644
--- a/src/libs/utils/runextensions.h
+++ b/src/libs/utils/runextensions.h
@@ -325,7 +325,7 @@ public:
futureInterface.reportStarted();
}
- ~AsyncJob()
+ ~AsyncJob() override
{
// QThreadPool can delete runnables even if they were never run (e.g. QThreadPool::clear).
// Since we reported them as started, we make sure that we always report them as finished.
@@ -382,7 +382,7 @@ public:
explicit RunnableThread(QRunnable *runnable, QObject *parent = 0);
protected:
- void run();
+ void run() override;
private:
QRunnable *m_runnable;