33
31
class TreeModel(gtk.GenericTreeModel):
36
34
def __init__ (self, branch, line_graph_data):
37
35
gtk.GenericTreeModel.__init__(self)
40
38
self.repository = branch.repository
41
39
self.line_graph_data = line_graph_data
56
47
return gtk.TREE_MODEL_LIST_ONLY
58
49
def on_get_n_columns(self):
61
52
def on_get_column_type(self, index):
62
53
if index == REVID: return gobject.TYPE_STRING