Index: sources/canbus/caninterface.cpp =================================================================== diff -u -reea63d68fc0fb269f8dec64d99f488bcad117220 -r93d7ff58cd6fd2fea5d00587ee712a637fc941bf --- sources/canbus/caninterface.cpp (.../caninterface.cpp) (revision eea63d68fc0fb269f8dec64d99f488bcad117220) +++ sources/canbus/caninterface.cpp (.../caninterface.cpp) (revision 93d7ff58cd6fd2fea5d00587ee712a637fc941bf) @@ -131,7 +131,7 @@ _thread = &vThread; _thread->setObjectName(QString("%1_Thread").arg(metaObject()->className())); connect(qApp, SIGNAL(aboutToQuit()), this, SLOT(quit())); - if (!_thread->isRunning()) _thread->start(); // In case more than one object using the same thread + _thread->start(); moveToThread(_thread); }