As the title says: I have this snippet:
QTimer timerdata;
I can start the timer by calling timerdata.start(5);
However, I am not getting 5 msec...I know that in Qt 5.x there are three levels of precision for timers:
- Qt::PreciseTimer: About 1 ms resolution on Windows
- Qt::CoarseTimer (default): About 15 ms resolution on Windows
- Qt::VeryCoarseTimer: 1000 ms resolution on all platforms
My question is is there something similar in qt 4.8 and if true, how to set it?