When I execute my thread in Qt with start() I can check if it is running with QThread::isRunning (). It returns true in case the thread is still running. After calling quit() i can quit my thread.
Now my question:
After calling quit(), my isRunning () query should return false, am I right? Equally QThread::isFinished () should return false.
With this question I just want to confirm that i understood one of the main principles of QThread.