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

  • Committer: Jasper Groenewegen
  • Date: 2008-07-17 21:24:16 UTC
  • mto: This revision was merged to the branch mainline in revision 537.
  • Revision ID: colbrac@xs4all.nl-20080717212416-shmcwoci88rcb1c9
Remove glade bits of OliveRemove, tweak existing (Olive)RemoveDialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
737
737
 
738
738
    def on_menuitem_remove_file_activate(self, widget):
739
739
        """ Remove (unversion) selected file. """
740
 
        from remove import OliveRemoveDialog
741
 
        remove = OliveRemoveDialog(self.wt, self.wtpath,
 
740
        from bzrlib.plugins.gtk.olive.remove import RemoveDialog
 
741
        remove = RemoveDialog(self.wt, self.wtpath,
742
742
                                   selected=self.get_selected_right(),
743
743
                                   parent=self.window)
744
744
        response = remove.run()