[SOLVED] QTimer in mainwindow class
-
wrote on 20 Jun 2015, 03:11 last edited by Duncan
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
-
wrote on 20 Jun 2015, 05:58 last edited by
Forgot to add the
#include <QTimer>
in the mainwindow.h file:)
1/2