On 11.10.07 10:25:21, Phil Thompson wrote: > Note that there is no need to specify a queued connected. All connections > across threads are queued.
Thats only true if either PyQt4 differs from Qt4/C++ in this respect or the two objects involved in the connection live in two different threads. That is usually not the case for the QThread (or subclass) object that you create in your main thread, only objects created in its run() method live in that new thread. Of course there's moveToThread() to change the owning thread of an object. Andreas -- Tuesday is the Wednesday of the rest of your life. _______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
