summaryrefslogtreecommitdiffstats
path: root/examples/tutorials/threads/movedobject/thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/tutorials/threads/movedobject/thread.cpp')
-rw-r--r--examples/tutorials/threads/movedobject/thread.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/tutorials/threads/movedobject/thread.cpp b/examples/tutorials/threads/movedobject/thread.cpp
index 6dfe8ff159..d8a17eefe6 100644
--- a/examples/tutorials/threads/movedobject/thread.cpp
+++ b/examples/tutorials/threads/movedobject/thread.cpp
@@ -43,7 +43,7 @@
/*
* QThread derived class with additional capability to move a QObject to the
* new thread, to stop the thread and move the QObject back to the thread where
- *it came from.
+ *it came from.
*/
Thread::Thread( QObject *parent)
@@ -68,7 +68,6 @@ void Thread::launchWorker(QObject *worker)
{
worker = worker;
start();
- int i=0;
worker->moveToThread(this);
shutDownHelper->moveToThread(this);
connect(shutDownHelper, SIGNAL(mapped(int) ), this, SLOT(stopExecutor()), Qt::DirectConnection );