Do *not* emit processFinished() from start() method in case of error. It will be emitted from destructor in any case!

This commit is contained in:
LoRd_MuldeR 2018-04-15 02:18:52 +02:00
parent 23ccdd21a0
commit f474da1f9c

View File

@ -160,11 +160,6 @@ bool ProcessThread::start(QThreadPool *const pool)
break;
}
if(!bSuccess)
{
emit processFinished();
}
return bSuccess;
}