/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 olive/menu.py

  • Committer: Jelmer Vernooij
  • Date: 2006-10-04 19:11:46 UTC
  • Revision ID: jelmer@samba.org-20061004191146-73c96d34fc3d05e4
Rename OliveBranch -> BranchDialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
203
203
 
204
204
    def commit(self, action):
205
205
        """ Right context menu -> Commit """
206
 
        from commit import OliveCommit
 
206
        from commit import CommitDialog
207
207
        wt, path = WorkingTree.open_containing(self.path)
208
 
        commit = OliveCommit(wt, path)
 
208
        commit = CommitDialog(wt, path)
209
209
        commit.display()
210
210
    
211
211
    def diff(self, action):