diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-06-19 13:26:18 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-06-19 13:26:18 +0100 |
commit | 19e1d23dd1c46b11d929d8803f24121b7b8447d3 (patch) | |
tree | 81241271642ef97c7be4e56a74b407a51a85145e | |
parent | ce55609d56ac059dbe1e64e09f5d307c9e679a84 (diff) | |
download | poky-19e1d23dd1c46b11d929d8803f24121b7b8447d3.tar.gz |
bitbake: puccho: Fix glade file location
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-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) |