/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: Jamie Wilkinson
  • Date: 2006-03-06 06:07:18 UTC
  • mfrom: (19.2.1 bzrk)
  • Revision ID: jaq@spacepants.org-20060306060718-c7bd01d3b8506f75
[merge conflict] merge in 0.8pre API fix from Jelmer

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)