Hi, what is the proper way to connect a signal to another signal using the new-style signal/slot syntax? I&#39;ve been doing it like this:<br><br>myObj1.mySignal.connect(lambda arg1, arg2: myObj2.mySignal.emit(arg1,arg2))<br>

<br>but is there a way to do it without using a lambda function?<br><br>Thanks<br>