this\'s the QTread\'s subObject... and concrete it in main Thread....
the Runtime error as follow:
ASSERT failure in QCoreApplication::sendEv
The parent (in this case your MainWindow) lives in a different thread. According to Qt documentation
You can manually post events to any object in any thread at any time using the thread-safe function QCoreApplication::postEvent(). The events will automatically be dispatched by the event loop of the thread where the object was created. Event filters are supported in all threads, with the restriction that the monitoring object must live in the same thread as the monitored object. Similarly, QCoreApplication::sendEvent() (unlike postEvent()) can only be used to dispatch events to objects living in the thread from which the function is called.
So as a solution I would propose the following: