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

mq: implement qgoto and qrename commands

Changeset 46069c8c2497

Parent c11ea1b77ef1

by Steve Borho

Changes to one file · Browse files at 46069c8c2497 Showing diff from parent c11ea1b77ef1 Diff from another changeset...

 
200
201
202
203
 
 
204
205
206
207
208
 
 
 
209
210
211
 
200
201
202
 
203
204
205
206
207
208
 
209
210
211
212
213
214
@@ -200,12 +200,15 @@
  @pyqtSlot(QListWidgetItem)   def onGotoPatch(self, item):   'Patch has been activated (return), issue qgoto' - print 'qgoto', item._thgpatch + self.repo.incrementBusyCount() + self.cmd.run(['qgoto', '-R', self.repo.root, item._thgpatch])     @pyqtSlot(QListWidgetItem)   def onRenamePatch(self, item):   'Patch has been renamed, issue qrename' - print 'qrename', item._thgpatch, item.text() + self.repo.incrementBusyCount() + self.cmd.run(['qrename', '-R', self.repo.root, item._thgpatch, + hglib.fromunicode(item.text())])     @pyqtSlot(int)   def onPatchSelected(self, row):