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

  • Committer: Jelmer Vernooij
  • Date: 2006-09-28 06:35:56 UTC
  • mto: (0.12.2 olive)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: jelmer@samba.org-20060928063556-62ec354cb06ba38c
Update TODO
integrate the handle and communicator functions into a main class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    """ Display checkout dialog and perform the needed operations. """
34
34
    def __init__(self, path=None):
35
35
        """ Initialize the Checkout dialog. """
36
 
        self.glade = gtk.glade.XML('window_checkout', 'olive-gtk')
 
36
        self.glade = gtk.glade.XML(gladefile, 'window_checkout', 'olive-gtk')
37
37
        
38
38
        self.window = self.glade.get_widget('window_checkout')
39
39