Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

datamine: add comments to ListStore structures

Changeset 83671f7ed24b

Parent a24f67432c73

by Yuki KODAMA

Changes to one file · Browse files at 83671f7ed24b Showing diff from parent a24f67432c73 Diff from another changeset...

 
333
334
335
336
 
 
 
 
337
338
339
 
599
600
601
602
 
 
 
 
 
 
 
603
604
605
 
333
334
335
 
336
337
338
339
340
341
342
 
602
603
604
 
605
606
607
608
609
610
611
612
613
614
@@ -333,7 +333,10 @@
  modifier, gtk.ACCEL_VISIBLE)   treeview.connect('thg-diff', self.grep_thgdiff)   - results = gtk.ListStore(str, str, str, str) + results = gtk.ListStore(str, # revision id + str, # matched line (utf-8) + str, # description (utf-8, escaped) + str) # file path (utf-8)   treeview.set_model(results)   treeview.set_search_equal_func(self.search_in_grep)   for title, width, col, emode in ( @@ -599,7 +602,13 @@
  modifier, gtk.ACCEL_VISIBLE)   treeview.connect('thg-diff', self.annotate_thgdiff)   - results = gtk.ListStore(str, str, str, str, str, str, str) + results = gtk.ListStore(str, # revision id + str, # file line (utf-8) + str, # description (utf-8, escaped) + str, # file path (utf-8) + str, # color + str, # author (utf-8) + str) # line number   treeview.set_model(results)   treeview.set_search_equal_func(self.search_in_file)