Hi,
I've got an issue where I'm trying to use deleteLater() to delete a thread after it has finished running. Therefore I have:
However, since MyThread has no parent, the deletion of the thread seems to only occur when the applciation exits. Does anyone know how this can be changed?Qt Code:
void MyThread::run() { //MyThread Work done here deleteLater(); }To copy to clipboard, switch view to plain text mode
David
Bookmarks