Re: [PyQt] Problem connecting buttonClicked signal

2010-06-22 Thread Darryl Wallace
Hello > -Original Message- > From: pyqt-boun...@riverbankcomputing.com [mailto:pyqt- > boun...@riverbankcomputing.com] On Behalf Of dizou > Sent: June-22-10 2:11 PM > To: pyqt@riverbankcomputing.com > Subject: [PyQt] Problem connecting buttonClicked signal >

Re: [PyQt] Problem connecting buttonClicked signal

2010-06-22 Thread dizou
Fixed this by changing buttonGroup to self.buttonGroup. Why would this matter? -- View this message in context: http://old.nabble.com/Problem-connecting-buttonClicked-signal-tp28963271p28963628.html Sent from the PyQt mailing list archive at Nabble.com. _

[PyQt] Problem connecting buttonClicked signal

2010-06-22 Thread dizou
I have a bunch of QPushButtons in a QButtonGroup. I am trying to connect the buttonClicked() signal with a method, but I am not able to. This is what I have: class DrawWidget(QWidget): def __init__(self, parent): QWidget.__init__(self, parent) self.Setup() def Se

[PyQt] Problem connecting buttonClicked signal

2010-06-22 Thread dizou
I have a bunch of QPushButtons in a QButtonGroup. I am trying to connect the buttonClicked() signal with a method, but I am not able to. This is what I have: class DrawWidget(QWidget): def __init__(self, parent): QWidget.__init__(self, parent) self.Setup() def Se