Hello,
can I invoke the static method QTimer::singleShot() multiple times in order to get multiple timers running at the same time? Or does the last call override the preceding calls?
Thank you
Printable View
Hello,
can I invoke the static method QTimer::singleShot() multiple times in order to get multiple timers running at the same time? Or does the last call override the preceding calls?
Thank you
Yes, you can call it multiple times. The last call doesn't override the preceding calls.