ok. So maybe is that such code is not in run() then stop() does not work. Try by subclassing QThread and put that code in run(). Then start the thread with start(). Those many pointers and metaobjects invokes are really don't needed.
Qt Code:
{ public: void run(); }; void MyThread::run() { //My massive process here }To copy to clipboard, switch view to plain text mode
Carlos
Bookmarks