summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp
diff options
context:
space:
mode:
authorAlexander Volkov <a.volkov@rusbitech.ru>2016-12-08 00:23:14 +0300
committerAlexander Volkov <a.volkov@rusbitech.ru>2018-08-16 11:00:31 +0000
commit242ea38375534f529f155efa46593e2a42577455 (patch)
tree066840072a102161115a30d398cf67da7ddbee61 /src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp
parent9b59a2ef973a067fb0c4a43396d1aca329b24f9c (diff)
doc: Add missing override and remove redundant virtual for snippets
Change-Id: I2395fd01b93c4ea364225e0cf1a5f59908b691d0 Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp')
-rw-r--r--src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp b/src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp
index ba31972aa1..8490942048 100644
--- a/src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp
+++ b/src/corelib/doc/snippets/code/src_corelib_concurrent_qthreadpool.cpp
@@ -51,7 +51,7 @@
//! [0]
class HelloWorldTask : public QRunnable
{
- void run()
+ void run() override
{
qDebug() << "Hello world from thread" << QThread::currentThread();
}