Hi,
is it okay to let a QThread delete itself when it is finished by calling deleteLater()?
Code:
MyThread::MyThread() SIGNAL(finished()), this, SLOT(deleteLater())); }
It seems to work but could there be any side effects?
Thanks
Lodorot
Printable View
Hi,
I think that ther can't be side effects due delete will be executed in the event loop.