[PyQt] signal issue with qbuttongroup

Mike Ramirez gufymike at gmail.com
Thu Aug 4 21:42:39 BST 2011


On Thursday, August 04, 2011 01:38:10 PM Di Zou wrote:
> My code is based on classes. This is how my code looks right now:
> 

>     def Function(self):
>         addAppButtonGroup = QButtonGroup()
>         addAppButtonGroup.addButton(addCustomAppButton)
>         addAppButtonGroup.addButton(addAppleStoreAppButton)
>         addAppButtonGroup.addButton(addWebLinkButton)
> 
>         addAppButtonGroup.setId(addCustomAppButton, 0)
>         addAppButtonGroup.setId(addAppleStoreAppButton, 1)
>         addAppButtonGroup.setId(addWebLinkButton, 2)        
>  
>         self.connect(addAppButtonGroup, SIGNAL("buttonClicked(int)"),

try adding self to addAppButtonGroup, I believe it's not staying in memory 
when the singal is emitted or it can't find it.  I tend to do things this way 
and don't have a problem with it.  

Mike

-- 
All of the packets are empty.


More information about the PyQt mailing list