X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBCpuPage.py;h=2d616d53fa900d767255c1ea71b4de36338de4a3;hb=f9c2a8d31399f00db0a00891f774d3c50cb489c6;hp=e329dbc866d279557cee07037aa8d92fb0a0415d;hpb=ee276ea346d90090f039720664dbb18d50e6bf7b;p=bertos.git diff --git a/wizard/BCpuPage.py b/wizard/BCpuPage.py index e329dbc8..2d616d53 100644 --- a/wizard/BCpuPage.py +++ b/wizard/BCpuPage.py @@ -12,10 +12,7 @@ from BWizardPage import * import bertos_utils -if PYQT_VERSION_STR > "4.4.3": - import qvariant_converter_new as qvariant_converter -else: - import qvariant_converter_old as qvariant_converter +import qvariant_converter class BCpuPage(BWizardPage): @@ -43,6 +40,7 @@ class BCpuPage(BWizardPage): self.pageContent.cpuList.setCurrentItem(elements[0]) def _setupUi(self): + self.pageContent.cpuList.setSortingEnabled(True) self.pageContent.descriptionLabel.setVisible(False) self.pageContent.descriptionLabel.setText("") @@ -56,7 +54,7 @@ class BCpuPage(BWizardPage): def isComplete(self): if self.pageContent.cpuList.currentRow() != -1: - self._projectInfoStore("CPU_INFOS", qvariant_converter.getStringDict(self.pageContent.cpuList.currentItem().data(Qt.UserRole))) + self._projectInfoStore("CPU_INFOS", qvariant_converter.getDict(self.pageContent.cpuList.currentItem().data(Qt.UserRole))) return True else: return False