What does QApplication::processEvents do
Unsolved
General and Desktop
-
What does QApplication::processEvents do and can someone suggest me small example usage of QApplication::processEvents
-
Hi,
It's all explained in the documentation of the function.
As for usage example, when writing well behaved code, you don't need it at all. It's usually used as a spare wheel when using long blocking loops in code running in the GUI thread which should be avoided.
-
Just wanted to check is it is only for multithreaded applications ?
-
No, it's not.