[SOLVED] QTimer in mainwindow class
General and Desktop
2
Posts
1
Posters
1.6k
Views
1
Watching
-
Hello!
I'm trying to call a function in my main window class every 5 seconds, what is the best way to do this?
I tried using QTimer, but could not get it to work. Below is what I have tried so far:
Mainwindow.h File:
private: QTimer *primeTime;
Mainwindow.cpp File:
primeTime = new QTimer(this); connect(primeTime, SIGNAL(timeout()), this, SLOT(timeCheck())); primeTime->start(1000);
Thanks for your time,
Duncan