/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to branchview/treemodel.py

  • Committer: Curtis Hovey
  • Date: 2011-08-27 18:03:04 UTC
  • mto: This revision was merged to the branch mainline in revision 741.
  • Revision ID: sinzui.is@verizon.net-20110827180304-9405wmp3lyzq5jx2
Updated most of BranchView to gtk3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
class TreeModel(Gtk.TreeStore):
38
38
 
39
39
    def __init__ (self, branch, line_graph_data):
40
 
        Gtk.GenericTreeModel.__init__(self)
 
40
        Gtk.TreeStore.__init__(self)
41
41
        self.revisions = {}
42
42
        self.branch = branch
43
43
        self.repository = branch.repository