Hi, what is the proper way to connect a signal to another signal using the
new-style signal/slot syntax? I've been doing it like this:

myObj1.mySignal.connect(lambda arg1, arg2: myObj2.mySignal.emit(arg1,arg2))

but is there a way to do it without using a lambda function?

Thanks
_______________________________________________
PyQt mailing list    PyQt@riverbankcomputing.com
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to