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

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-10-25 09:21:40 UTC
  • mfrom: (93.1.7 bzr-gtk.win32.bialix)
  • Revision ID: Szilveszter.Farkas@gmail.com-20061025092140-7a1c9d40d6da87e9
Merged Alexander Belchenko's bugfixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import gtk
24
24
import gtk.glade
25
25
 
26
 
from olive import gladefile
 
26
from gladefile import GLADEFILENAME
 
27
 
27
28
 
28
29
class OliveStatus:
29
30
    """ Display Status window and perform the needed actions. """
30
31
    def __init__(self, wt, wtpath):
31
32
        """ Initialize the Status window. """
32
 
        self.glade = gtk.glade.XML(gladefile, 'window_status')
 
33
        self.glade = gtk.glade.XML(GLADEFILENAME, 'window_status')
33
34
        
34
35
        # Get the Status window widget
35
36
        self.window = self.glade.get_widget('window_status')