I\'m building a Qt Symbian Project and I want to show a notification for the user that should auto close after some seconds. I have seen that Nokia uses this a lot in their
Instead you can use Singleshot Timer to close any dialog box or QLabel with much ease:
Singleshot
QLabel
QTimer *timer; QTimer::singleShot(10000, msgBox, SLOT(close()));