Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

thgmq: remove unused parameter

Changeset a937115258f1

Parent c422af6ecf00

by Yuki KODAMA

Changes to one file · Browse files at a937115258f1 Showing diff from parent c422af6ecf00 Diff from another changeset...

 
641
642
643
644
 
645
646
647
 
784
785
786
787
 
788
789
790
 
641
642
643
 
644
645
646
647
 
784
785
786
 
787
788
789
790
@@ -641,7 +641,7 @@
  def row_sep_func(self, model, iter, data=None):   return model[iter][MQ_INDEX] == INDEX_SEPARATOR   - def show_patch_cmenu(self, list, path): + def show_patch_cmenu(self, path):   row = self.model[path]   if row[MQ_INDEX] == INDEX_SEPARATOR:   return @@ -784,7 +784,7 @@
  x, y = int(event.x), int(event.y)   pathinfo = list.get_path_at_pos(x, y)   if pathinfo: - self.show_patch_cmenu(list, pathinfo[0]) + self.show_patch_cmenu(pathinfo[0])     def list_sel_changed(self, list):   path, focus = list.get_cursor()