diff options
-rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index e043f93252..f304a686e1 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
@@ -195,7 +195,6 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
195 | self.max_threads = max_threads | 195 | self.max_threads = max_threads |
196 | 196 | ||
197 | # class members for internal use | 197 | # class members for internal use |
198 | self.distro_combo = None | ||
199 | self.dldir_text = None | 198 | self.dldir_text = None |
200 | self.sstatedir_text = None | 199 | self.sstatedir_text = None |
201 | self.sstatemirror_text = None | 200 | self.sstatemirror_text = None |
@@ -330,7 +329,6 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
330 | self.refresh_proxy_components() | 329 | self.refresh_proxy_components() |
331 | 330 | ||
332 | def response_cb(self, dialog, response_id): | 331 | def response_cb(self, dialog, response_id): |
333 | #self.configuration.curr_distro = self.distro_combo.get_active_text() | ||
334 | self.configuration.dldir = self.dldir_text.get_text() | 332 | self.configuration.dldir = self.dldir_text.get_text() |
335 | self.configuration.sstatedir = self.sstatedir_text.get_text() | 333 | self.configuration.sstatedir = self.sstatedir_text.get_text() |
336 | self.configuration.sstatemirror = self.sstatemirror_text.get_text() | 334 | self.configuration.sstatemirror = self.sstatemirror_text.get_text() |
@@ -358,14 +356,6 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper): | |||
358 | 356 | ||
359 | sub_vbox = gtk.VBox(False, 6) | 357 | sub_vbox = gtk.VBox(False, 6) |
360 | advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) | 358 | advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) |
361 | label = self.gen_label_widget("<span weight=\"bold\">Select distro:</span>") | ||
362 | tooltip = "Selects the Yocto Project distribution you want" | ||
363 | distro_widget, self.distro_combo = self.gen_combo_widget(self.configuration.curr_distro, self.all_distros, tooltip) | ||
364 | sub_vbox.pack_start(label, expand=False, fill=False) | ||
365 | sub_vbox.pack_start(distro_widget, expand=False, fill=False) | ||
366 | |||
367 | sub_vbox = gtk.VBox(False, 6) | ||
368 | advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) | ||
369 | label = self.gen_label_widget("<span weight=\"bold\">BB number threads:</span>") | 359 | label = self.gen_label_widget("<span weight=\"bold\">BB number threads:</span>") |
370 | tooltip = "Sets the number of threads that BitBake tasks can simultaneously run. See the <a href=\"" | 360 | tooltip = "Sets the number of threads that BitBake tasks can simultaneously run. See the <a href=\"" |
371 | tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/" | 361 | tooltip += "http://www.yoctoproject.org/docs/current/poky-ref-manual/" |