Changeset jokey@gentoo.org-20070510220730-2x68guh7mf8t2l50 in jokey/maintainer-helper

Show
Ignore:
Timestamp:
05/11/07 00:07:30 (19 months ago)
Author:
Markus Ullmann <jokey@…>
branch-nick:
maintainer-helper
Message:

add a handler for the bump

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • gui/version_bump.py

    rjokey@gentoo.org-20070509164019-vnbolak81f937yuf rjokey@gentoo.org-20070510220730-2x68guh7mf8t2l50  
    2626        self.useriface.setupUi(self) 
    2727 
     28        self.connect(self, 
     29            QtCore.SIGNAL("finished(int)"), self.dialog_closed) 
    2830        for domain in self.config.domain.iterkeys(): 
    2931            self.useriface.targetDomain.addItem(domain) 
     
    6163        self.show() 
    6264 
     65    def dialog_closed(self,result): 
     66        """dialog finished now, should we bump?""" 
     67        if result != True: 
     68            return 
     69