Hi.I've a question.
In my application I use a QThread to do some tasks and the thread allocates some object in the heap with new.
When i delete the thread does the objects allocated by this thread delete themself or i've to explicitly delete these objects in the thread decostructor to avoid that these objects remain in the memory till the termination of the application?

Sorry for my english

Thank you!!