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

stable bookmark: remove progress signal

Bookmarks commands are unlikely to ever generate progress bars

Changeset 5dcc810be447

Parent 1970e420cc95

by Steve Borho

Changes to 2 files · Browse files at 5dcc810be447 Showing diff from parent 1970e420cc95 Diff from another changeset...

 
21
22
23
24
25
26
27
 
96
97
98
99
100
101
102
 
21
22
23
 
24
25
26
 
95
96
97
 
98
99
100
@@ -21,7 +21,6 @@
 class BookmarkDialog(QDialog):   showMessage = pyqtSignal(QString)   output = pyqtSignal(QString, QString) - progress = pyqtSignal(QString, object, QString, QString, object)   makeLogVisible = pyqtSignal(bool)     def __init__(self, repo, rev, parent): @@ -96,7 +95,6 @@
  self.cmd = cmdui.Runner(False, self)   self.cmd.output.connect(self.output)   self.cmd.makeLogVisible.connect(self.makeLogVisible) - self.cmd.progress.connect(self.progress)   self.cmd.commandFinished.connect(self.commandFinished)     # prepare to show
 
1202
1203
1204
1205
1206
1207
1208
 
1202
1203
1204
 
1205
1206
1207
@@ -1202,7 +1202,6 @@
  dlg.showMessage.connect(self.showMessage)   dlg.output.connect(self.output)   dlg.makeLogVisible.connect(self.makeLogVisible) - dlg.progress.connect(self.progress)   dlg.finished.connect(dlg.deleteLater)   dlg.exec_()