Hi Folks,
I have a multithreaded application where I need to connect the signals and slots between different object who live in different threads.
Basically I use the following scenario to create multithreading application:
* create the two object
* connect their signals and slots
* create a QThread object
* move the appropirate object into another thread
BUT I need the solution to I am able to connect signals and slots to another object after the moving of the specific object into another thread. So the modified version of the code above:
* create the two object
* create a QThread object
* move the appropirate object into another thread
* during the running of the application connect specific signals and slots
How can I do that?
Regards,
Norbert
↧