summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
Diffstat (limited to 'mat-gui')
-rwxr-xr-xmat-gui4
1 files changed, 2 insertions, 2 deletions
diff --git a/mat-gui b/mat-gui
index e4f36ea..d0bf606 100755
--- a/mat-gui
+++ b/mat-gui
@@ -52,14 +52,14 @@ class GUI(object):
52 52
53 self.window = self.builder.get_object('MainWindow') 53 self.window = self.builder.get_object('MainWindow')
54 self.window.set_icon(icon) 54 self.window.set_icon(icon)
55 self.liststore = self.builder.get_object('Liststore') 55 self.liststore = self.builder.get_object('MainWindowListstore')
56 ''' The Liststore contains: 56 ''' The Liststore contains:
57 0: The CFile instance that represents the file 57 0: The CFile instance that represents the file
58 1: The file's name 58 1: The file's name
59 2: The file's state (Localised string) 59 2: The file's state (Localised string)
60 ''' 60 '''
61 61
62 self.treeview = self.builder.get_object('Treeview') 62 self.treeview = self.builder.get_object('MainWindowTreeview')
63 63
64 self.statusbar = self.builder.get_object('Statusbar') 64 self.statusbar = self.builder.get_object('Statusbar')
65 self.statusbar.push(1, _('Ready')) 65 self.statusbar.push(1, _('Ready'))