summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/threads/hellothread/hellothread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tutorials/threads/hellothread/hellothread.cpp')
-rw-r--r--examples/widgets/tutorials/threads/hellothread/hellothread.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/examples/widgets/tutorials/threads/hellothread/hellothread.cpp b/examples/widgets/tutorials/threads/hellothread/hellothread.cpp
index 4395b0cb2b..1b5088e0db 100644
--- a/examples/widgets/tutorials/threads/hellothread/hellothread.cpp
+++ b/examples/widgets/tutorials/threads/hellothread/hellothread.cpp
@@ -44,10 +44,7 @@
* demonstrates use of QThread, says hello in another thread and terminates
*/
-//! [1]
-// hellothread/hellothread.cpp
void HelloThread::run()
{
qDebug() << "hello from worker thread " << thread()->currentThreadId();
}
-//! [1]