QTimer from a non QThread
Unsolved
General and Desktop
-
Can QTimer be called from
What does this mean?
A timer object will generate thetimeout()
signal at (almost) regular intervals, you can subscribe to that and do whatever you want. What do you want to call from aQTimer
instance? If you mean to useQTimer
without an event loop (i.e. withoutQCoreApplication
), well then, no you can't do that.