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

cmdui: consistent slot names

Changeset f397755e871f

Parent 09038fd6316f

by Steve Borho

Changes to one file · Browse files at f397755e871f Showing diff from parent 09038fd6316f Diff from another changeset...

 
272
273
274
275
 
276
277
278
 
299
300
301
302
 
303
304
305
 
709
710
711
712
 
713
714
715
 
783
784
785
786
 
787
788
789
 
272
273
274
 
275
276
277
278
 
299
300
301
 
302
303
304
305
 
709
710
711
 
712
713
714
715
 
783
784
785
 
786
787
788
789
@@ -272,7 +272,7 @@
    self.thread = thread.CmdThread(cmdline, self.display, self.parent())   self.thread.started.connect(self.onCommandStarted) - self.thread.commandFinished.connect(self.threadFinished) + self.thread.commandFinished.connect(self.onThreadFinished)     self.thread.outputReceived.connect(self.output)   self.thread.progressReceived.connect(self.progress) @@ -299,7 +299,7 @@
  self.commandStarted.emit()     @pyqtSlot(int) - def threadFinished(self, ret): + def onThreadFinished(self, ret):   if self.stbar:   if ret is None:   self.stbar.clear() @@ -709,7 +709,7 @@
  self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)     self.core = Core(True, self) - self.core.commandFinished.connect(self.commandFinished) + self.core.commandFinished.connect(self.onCommandFinished)     vbox = QVBoxLayout()   vbox.setSpacing(4) @@ -783,7 +783,7 @@
  self.cancelBtn.setDisabled(True)     @pyqtSlot(int) - def commandFinished(self, ret): + def onCommandFinished(self, ret):   self.returnCode = ret   self.cancelBtn.setHidden(True)   self.closeBtn.setShown(True)