Add the module qvariant_converter.py that abstracts the user from the qvariant_conver...
[bertos.git] / wizard / BCpuPage.py
index e329dbc866d279557cee07037aa8d92fb0a0415d..e42bd2db72391d06eff9288aefadd279b401e157 100644 (file)
 
 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):
     
@@ -56,7 +53,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