Hi all,
I've got a single-shot QTimer which is allocated like:
Code:
timer->setInterval(...); timer->setSingleShot(true); timer->start();
I wonder whether the timer gets dealloced when it fires or when the current object gets deallocated. The reason I am asking is because I allocate many of these timers throughout the lifetime of the object.
Thanks,
M