diff options
author | Shane Wang <shane.wang@intel.com> | 2012-03-22 21:46:02 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-22 14:43:51 +0000 |
commit | 8dda137c12d284304a5b3e6693732b00f2b5553f (patch) | |
tree | 10f23a6dda4f83e575b7ee51ab68c15b2fd8ed62 | |
parent | 0ac021e8b9a2c76e4e730d41f3e59ad54df7926d (diff) | |
download | poky-8dda137c12d284304a5b3e6693732b00f2b5553f.tar.gz |
Hob: Revert interfaces of callbacks for layer_button, view_recipes_button, and view_packages_button.
(From Poky rev: 35942a7dd973796673ab0215f68b4a25356ec053)
(Bitbake rev: 96e235a151fa04f5a15cd8b46f50a5852e2ba739)
Signed-off-by: Shane Wang <shane.wang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py index 6f01f050d5..c358a970e4 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | |||
@@ -343,14 +343,14 @@ class ImageConfigurationPage (HobPage): | |||
343 | self.image_combo.set_active(-1) | 343 | self.image_combo.set_active(-1) |
344 | self.image_combo.set_active(active) | 344 | self.image_combo.set_active(active) |
345 | 345 | ||
346 | def layer_button_clicked_cb(self, button): | 346 | def layer_button_clicked_cb(self, event, data): |
347 | # Create a layer selection dialog | 347 | # Create a layer selection dialog |
348 | self.builder.show_layer_selection_dialog() | 348 | self.builder.show_layer_selection_dialog() |
349 | 349 | ||
350 | def view_recipes_button_clicked_cb(self, button): | 350 | def view_recipes_button_clicked_cb(self, event, data): |
351 | self.builder.show_recipes() | 351 | self.builder.show_recipes() |
352 | 352 | ||
353 | def view_packages_button_clicked_cb(self, button): | 353 | def view_packages_button_clicked_cb(self, event, data): |
354 | self.builder.show_packages() | 354 | self.builder.show_packages() |
355 | 355 | ||
356 | def just_bake_button_clicked_cb(self, button): | 356 | def just_bake_button_clicked_cb(self, button): |