Should I use QCoreApplication::processEvents() or QApplication::processEvents()?

Neither, processEvent() should be calld only when you have actual pending events to process.
You may find this useful : How to make Qt work when main thread is busy?

Leave a Comment