hi,
I am using QTimer in my code, i created QTimer object and connectecd timeout signal to one slot. I am giving 5 millisec timeout for timer. but that slot is not calling after timeout.
Any specific way to use the timer?
My code is:
in buttonClick function:Code:
connect(m_pTimer, SIGNAL(timeout()), this, SLOT(TimerNotification()));
Code:
m_pTimer->start(2000);
