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

[merge] Alexander

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from bzrlib.branch import Branch
29
29
import bzrlib.errors as errors
30
30
 
31
 
from __init__ import gladefile
32
31
from dialog import error_dialog, info_dialog
 
32
from guifiles import GLADEFILENAME
 
33
 
33
34
 
34
35
class BranchDialog:
35
36
    """ Display branch dialog and perform the needed operations. """
36
37
    def __init__(self, path=None):
37
38
        """ Initialize the Branch dialog. """
38
 
        self.glade = gtk.glade.XML(gladefile, 'window_branch', 'olive-gtk')
 
39
        self.glade = gtk.glade.XML(GLADEFILENAME, 'window_branch', 'olive-gtk')
39
40
 
40
41
        self.window = self.glade.get_widget('window_branch')
41
42