Re: [PyQt] Connect and signal question

2009-09-23 Thread Phil Thompson
On Wed, 23 Sep 2009 15:01:24 +0200, Michele Petrazzo - Unipex wrote: > Hi all, > I'm trying to use qt/pyqt for the first time and I found the first > problems... > I see that when I connect a signal to a widget, if I create a wrong > signal, qt don't say me that I'm wrong let me crazing to find wh

[PyQt] Connect and signal question

2009-09-23 Thread Michele Petrazzo - Unipex
Hi all, I'm trying to use qt/pyqt for the first time and I found the first problems... I see that when I connect a signal to a widget, if I create a wrong signal, qt don't say me that I'm wrong let me crazing to find why qt don't call my callback... So, there is a method for say to qt to warning m

Re: [PyQt] Connect and signal question

2009-09-23 Thread Michele Petrazzo - Unipex
Phil Thompson wrote: Assuming you have a recent version then use the new connection syntax... 4.4 on debian lenny or squeeze self.my_rb.toggled.connect(self._evt_my_rb) I think that I need at least 4.5 because it doesn't work. I'll wait for a debian update. Phil Thanks, Michele