Hello

If I have the following code
Qt Code:
  1. void someslotFunc()
  2. {
  3. qApp->postEvent(QEvent::SomeEventType);
  4. }
To copy to clipboard, switch view to plain text mode 

When the posted event will be processed ? When control gets to the main loop, right? Or it will be processed inside the slot?
Think that the case is when control gets to the main loop, but I am not sure
Thanks