Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9.3, 2.0, and 2.0.1

stable repowidget: showMessage is a function, the signal name is showMessageSignal

Changeset d98bcaee84d4

Parent 61fac0ba05d3

by Steve Borho

Changes to one file · Browse files at d98bcaee84d4 Showing diff from parent 61fac0ba05d3 Diff from another changeset...

 
691
692
693
694
 
695
696
697
 
698
699
700
 
701
702
703
 
691
692
693
 
694
695
696
 
697
698
699
 
700
701
702
703
@@ -691,13 +691,13 @@
    def okToContinue(self):   if not self.commitDemand.forward('canExit', default=True): - self.showMessage.emit(_('Commit tab cannot exit')) + self.showMessage(_('Commit tab cannot exit'))   return False   if not self.syncDemand.forward('canExit', default=True): - self.showMessage.emit(_('Sync tab cannot exit')) + self.showMessage(_('Sync tab cannot exit'))   return False   if not self.mqDemand.forward('canExit', default=True): - self.showMessage.emit(_('MQ tab cannot exit')) + self.showMessage(_('MQ tab cannot exit'))   return False   return True