376 """ top of the stack overwriting any local changes.</p>""" |
376 """ top of the stack overwriting any local changes.</p>""" |
377 )) |
377 )) |
378 self.hgQueueGotoForceAct.triggered[()].connect(self.__hgQueueGotoPatchForced) |
378 self.hgQueueGotoForceAct.triggered[()].connect(self.__hgQueueGotoPatchForced) |
379 self.actions.append(self.hgQueueGotoForceAct) |
379 self.actions.append(self.hgQueueGotoForceAct) |
380 |
380 |
381 |
|
382 def __initGuardsActions(self): |
381 def __initGuardsActions(self): |
383 """ |
382 """ |
384 Public method to generate the guards action objects. |
383 Public method to generate the guards action objects. |
385 """ |
384 """ |
386 self.hgQueueDefineGuardsAct = E5Action(self.trUtf8('Define Guards'), |
385 self.hgQueueDefineGuardsAct = E5Action(self.trUtf8('Define Guards'), |
690 Private slot used to show the commit message of the current patch. |
689 Private slot used to show the commit message of the current patch. |
691 """ |
690 """ |
692 self.vcs.getExtensionObject("mq")\ |
691 self.vcs.getExtensionObject("mq")\ |
693 .hgQueueShowHeader(self.project.getProjectPath()) |
692 .hgQueueShowHeader(self.project.getProjectPath()) |
694 |
693 |
695 |
|
696 def __hgQueuePushPopPatches(self, name, operation, all=False, named=False, |
694 def __hgQueuePushPopPatches(self, name, operation, all=False, named=False, |
697 force=False): |
695 force=False): |
698 """ |
696 """ |
699 Private method to push patches onto the stack or pop patches off the stack. |
697 Private method to push patches onto the stack or pop patches off the stack. |
700 |
698 |