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

repowidget: use MQ task tab to push/pop/popall patches

Changeset 9541171b7fca

Parent 2d2a419ef4e5

by Steve Borho

Changes to one file · Browse files at 9541171b7fca Showing diff from parent 2d2a419ef4e5 Diff from another changeset...

 
725
726
727
728
729
730
 
 
731
732
733
734
735
736
 
 
737
738
739
 
1099
1100
1101
1102
1103
1104
 
 
1105
1106
1107
 
725
726
727
 
 
 
728
729
730
731
732
 
 
 
733
734
735
736
737
 
1097
1098
1099
 
 
 
1100
1101
1102
1103
1104
@@ -725,15 +725,13 @@
    def qpush(self):   """QPush a patch from MQ""" - cmdline = ['qpush', - '--repository', self.repo.root] - self.runCommand(_('QPush - TortoiseHg'), cmdline) + self.taskTabsWidget.setCurrentIndex(self.mqTabIndex) + self.mqDemand.get().onPush()     def qpop(self):   """QPop a patch from MQ""" - cmdline = ['qpop', - '--repository', self.repo.root] - self.runCommand(_('QPop - TortoiseHg'), cmdline) + self.taskTabsWidget.setCurrentIndex(self.mqTabIndex) + self.mqDemand.get().onPop()     ##   ## Repoview context menu @@ -1099,9 +1097,8 @@
    def qpopAllRevision(self):   """Unapply all patches""" - cmdline = ['qpop', '--all', - '--repository', self.repo.root] - self.runCommand(_('QPop All - TortoiseHg'), cmdline) + self.taskTabsWidget.setCurrentIndex(self.mqTabIndex) + self.mqDemand.get().onPopAll()     def qgotoRevision(self):   """Make REV the top applied patch"""