Quote Originally Posted by amleto View Post
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.

best regads.