Re: QObject with QTimer moved to QThread - QTimer::timeout() not processed until wait
Originally Posted by amleto
what you are doing is even worse than subclassing QThread (not that subclassing QThread is bad)
You are blocking the main thread with the while(...) loop in MyObject.
Are you sure? As myObject with its while loop is moved to another thread it seems to run concurently to main thread. At least the GUI stays responsive and processes all the events.
Bookmarks