/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 diffwin.py

  • Committer: Jelmer Vernooij
  • Date: 2006-02-20 21:44:46 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: jelmer@samba.org-20060220214446-c29d22fb75afb378
Update to use post-repository API

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
        Compares the two trees and populates the window with the
110
110
        differences.
111
111
        """
112
 
        self.rev_tree = branch.revision_tree(revid)
113
 
        self.parent_tree = branch.revision_tree(parentid)
 
112
        self.rev_tree = branch.repository.revision_tree(revid)
 
113
        self.parent_tree = branch.repository.revision_tree(parentid)
114
114
 
115
115
        self.model.clear()
116
116
        delta = compare_trees(self.parent_tree, self.rev_tree)