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

stable pbranch: Remove actions that are not implemented yet

Changeset 302221936e54

Parent c2ab7d178c43

by Peer Sommerlund

Changes to one file · Browse files at 302221936e54 Showing diff from parent c2ab7d178c43 Diff from another changeset...

 
63
64
65
66
 
67
68
69
70
71
72
 
73
74
75
 
81
82
83
84
 
85
86
87
 
63
64
65
 
66
67
68
69
70
71
 
72
73
74
75
 
81
82
83
 
84
85
86
87
@@ -63,13 +63,13 @@
  self.actionBackport = a = QWidgetAction(self)   a.setIcon(geticon("go-previous"))   a.setToolTip(_('Backout current patch branch')) - tb.addAction(self.actionBackport) + #tb.addAction(self.actionBackport)   #self.actionBackport.triggered.connect(self.pbackout_clicked)     self.actionReapply = a = QWidgetAction(self)   a.setIcon(geticon("go-next"))   a.setToolTip(_('Backport part of a changeset to a dependency')) - tb.addAction(self.actionReapply) + #tb.addAction(self.actionReapply)   #self.actionReapply.triggered.connect(self.reapply_clicked)     self.actionPNew = a = QWidgetAction(self) @@ -81,7 +81,7 @@
  self.actionEditPGraph = a = QWidgetAction(self)   a.setIcon(geticon("log")) #STOCK_EDIT   a.setToolTip(_('Edit patch dependency graph')) - tb.addAction(self.actionEditPGraph) + #tb.addAction(self.actionEditPGraph)   #self.actionEditPGraph.triggered.connect(self.pbackout_clicked)     vbox.addWidget(self.toolBar_patchbranch, 1)