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

[merge] Alexander

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import bzrlib.errors as errors
30
30
from bzrlib.workingtree import WorkingTree
31
31
 
32
 
from olive import gladefile
33
32
from dialog import error_dialog
 
33
from guifiles import GLADEFILENAME
 
34
 
34
35
 
35
36
class OliveMove:
36
37
    """ Display the Move dialog and perform the needed actions. """
37
38
    def __init__(self, wt, wtpath, selected=[]):
38
39
        """ Initialize the Move dialog. """
39
 
        self.glade = gtk.glade.XML(gladefile, 'window_move', 'olive-gtk')
 
40
        self.glade = gtk.glade.XML(GLADEFILENAME, 'window_move', 'olive-gtk')
40
41
        
41
42
        self.window = self.glade.get_widget('window_move')
42
43