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

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-12-17 23:22:10 UTC
  • Revision ID: szilveszter.farkas@gmail.com-20061217232210-nxws311ray6wlpw3
Use OliveBookmarkDialog instead of OliveBookmark.

Fixed: #67922 (bookmarks in olive)

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
class OliveRemoveDialog(gtk.Dialog):
98
98
    """ This class wraps the old Remove window into a gtk.Dialog. """
99
99
    
100
 
    def __init__(self, wt, wtpath, selected=[], parent=None, single=False):
 
100
    def __init__(self, wt, wtpath, selected=[], parent=None):
101
101
        """ Initialize the Remove file(s) dialog. """
102
102
        gtk.Dialog.__init__(self, title="Remove files - Olive",
103
103
                                  parent=parent,
108
108
        self.wt = wt
109
109
        self.wtpath = wtpath
110
110
        self.selected = selected
111
 
        self.single = single
112
111
        
113
112
        # Create widgets
114
113
        self._label = gtk.Label(_("Which file(s) do you want to remove?"))