Re: [PyKDE] automatic slots and subclassing

2006-01-27 Thread Phil Thompson
On Thursday 26 January 2006 6:26 pm, Andreas Pakulat wrote: > Hi, > > another thing I found with automatic slots: It seems they do not work > when subclassing: > > class parentWidget(QtGui.QWidget): > def __init__(self): > QtGui.QWidget.__init__(self) > def on_pushButton_c

[PyKDE] automatic slots and subclassing

2006-01-26 Thread Andreas Pakulat
Hi, another thing I found with automatic slots: It seems they do not work when subclassing: class parentWidget(QtGui.QWidget): def __init__(self): QtGui.QWidget.__init__(self) def on_pushButton_clicked(self, checked = None): print "tst" class myWid