diff options
| -rw-r--r-- | bitbake-dev/lib/bb/ui/puccho.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bitbake-dev/lib/bb/ui/puccho.py b/bitbake-dev/lib/bb/ui/puccho.py index dd34182c8d..713aa1f4a6 100644 --- a/bitbake-dev/lib/bb/ui/puccho.py +++ b/bitbake-dev/lib/bb/ui/puccho.py | |||
| @@ -217,7 +217,7 @@ class BuildSetupDialog (gtk.Dialog): | |||
| 217 | button.show_all () | 217 | button.show_all () | 
| 218 | 218 | ||
| 219 | # Pull in *just* the table from the Glade XML data. | 219 | # Pull in *just* the table from the Glade XML data. | 
| 220 | gxml = gtk.glade.XML ("bitbake-dev/lib/bb/ui/crumbs/puccho.glade", | 220 | gxml = gtk.glade.XML (os.path.dirname(__file__) + "/crumbs/puccho.glade", | 
| 221 | root = "build_table") | 221 | root = "build_table") | 
| 222 | table = gxml.get_widget ("build_table") | 222 | table = gxml.get_widget ("build_table") | 
| 223 | self.vbox.pack_start (table, True, False, 0) | 223 | self.vbox.pack_start (table, True, False, 0) | 
| @@ -347,7 +347,7 @@ class MainWindow (gtk.Window): | |||
| 347 | 347 | ||
| 348 | # Pull in *just* the main vbox from the Glade XML data and then pack | 348 | # Pull in *just* the main vbox from the Glade XML data and then pack | 
| 349 | # that inside the window | 349 | # that inside the window | 
| 350 | gxml = gtk.glade.XML ("bitbake-dev/lib/bb/ui/crumbs/puccho.glade", | 350 | gxml = gtk.glade.XML (os.path.dirname(__file__) + "/crumbs/puccho.glade", | 
| 351 | root = "main_window_vbox") | 351 | root = "main_window_vbox") | 
| 352 | vbox = gxml.get_widget ("main_window_vbox") | 352 | vbox = gxml.get_widget ("main_window_vbox") | 
| 353 | self.add (vbox) | 353 | self.add (vbox) | 
