X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBCpuPage.py;h=ce854bb24abae60789953d331a976815b5d48d10;hb=eec53a0483a101e131d4fa38becaf1c8fb069d5e;hp=ff0710c3c90ca6ac68950ea000dc77c249b19d99;hpb=53927601d447bf0a4086626e420ac8daa42c85f6;p=bertos.git diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index ff0710c3..ce854bb2 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -61,16 +61,21 @@ class BCpuPage(BWizardPage): self.pageContent.frequencySpinBox.setVisible(True) infos = qvariant_converter.getDict(self.pageContent.cpuList.currentItem().data(Qt.UserRole)) for key, value in infos.items(): - if type(CPU_DEF[key]) == list: - infos[key] = qvariant_converter.getStringList(value) - if type(CPU_DEF[key]) == str or type(CPU_DEF) == unicode: + if key in CPU_DEF: + if type(CPU_DEF[key]) == list: + infos[key] = qvariant_converter.getStringList(value) + if type(CPU_DEF[key]) == str or type(CPU_DEF) == unicode: + infos[key] = qvariant_converter.getString(value) + elif key.startswith(MK_PARAM_ID): infos[key] = qvariant_converter.getString(value) + else: + del infos[key] self.setProjectInfo("CPU_INFOS", infos) self.setProjectInfo("CPU_NAME", unicode(self.pageContent.cpuList.currentItem().text())) self.setProjectInfo("SELECTED_FREQ", unicode(long(self.pageContent.frequencySpinBox.value()))) tag_dict = self.projectInfo("ALL_CPU_TAGS") for tag in tag_dict: - if tag in infos["CPU_TAGS"] + [infos["CPU_NAME"], infos["CORE_CPU"], infos["TOOLCHAIN"]]: + if tag in infos["CPU_TAGS"] + [infos["CPU_NAME"], infos["TOOLCHAIN"]]: tag_dict[tag] = True else: tag_dict[tag] = False @@ -88,8 +93,6 @@ class BCpuPage(BWizardPage): Overload of the BWizardPage setupUi method. """ self.pageContent.cpuList.setSortingEnabled(True) - self.pageContent.descriptionLabel.setVisible(False) - self.pageContent.descriptionLabel.setText("") self.pageContent.frequencyLabel.setVisible(False) self.pageContent.frequencySpinBox.setVisible(False)