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

cmdui: CamelCase Widget and Runner internal methods

Changeset e401d778573a

Parent 62dca56cb680

by Steve Borho

Changes to one file · Browse files at e401d778573a Showing diff from parent 62dca56cb680 Diff from another changeset...

 
650
651
652
653
 
654
655
656
 
695
696
697
698
 
699
700
701
 
813
814
815
816
 
817
818
819
 
847
848
849
850
 
851
852
853
 
650
651
652
 
653
654
655
656
 
695
696
697
 
698
699
700
701
 
813
814
815
 
816
817
818
819
 
847
848
849
 
850
851
852
853
@@ -650,7 +650,7 @@
  self.internallog = useInternal   self.core = Core(useInternal, self)   self.core.commandStarted.connect(self.commandStarted) - self.core.commandFinished.connect(self.command_finished) + self.core.commandFinished.connect(self.onCommandFinished)   self.core.commandCanceling.connect(self.commandCanceling)   self.core.output.connect(self.output)   self.core.progress.connect(self.progress) @@ -695,7 +695,7 @@
  ### Signal Handler ###     @pyqtSlot(int) - def command_finished(self, ret): + def onCommandFinished(self, ret):   if ret == -1:   self.makeLogVisible.emit(True)   self.show_output(True) @@ -813,7 +813,7 @@
    self.core = Core(useInternal, self)   self.core.commandStarted.connect(self.commandStarted) - self.core.commandFinished.connect(self.command_finished) + self.core.commandFinished.connect(self.onCommandFinished)   self.core.commandCanceling.connect(self.commandCanceling)     self.core.output.connect(self.output) @@ -847,7 +847,7 @@
  ### Signal Handler ###     @pyqtSlot(int) - def command_finished(self, ret): + def onCommandFinished(self, ret):   if ret != 0:   self.makeLogVisible.emit(True)   self.show_output()