<div>im trying to figure out how i can change the old signal syntax to new. the program im reading through creates a widget that inherits from QSpinBox. </div><div> </div><div>zerospinbox = ZeroSpinBox()</div><div> </div><div>
It then emits its custom signal, then that signal is connected to a python method.  Here are the 2 codes i need help converting.</div><div> </div><div>self.emit(SIGNAL("atzero"), self.zeros)       #this is zerospinbox emitting a custom "atzero" signal</div>
<div> </div><div>self.connect(zerospinbox, SIGNAL("atzero"), self.announce)        #and here is the same signal being connected to a python method.</div><div> </div><div> </div><div>As you can see this code example uses the old style syntax, can anyone please convert it for me into the newer style syntax.</div>