Add a stub of the configuration storing procedure
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 Jan 2009 18:59:57 +0000 (18:59 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 26 Jan 2009 18:59:57 +0000 (18:59 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2224 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/BModulePage.py

index 48ad0892db6ec34f19b21532fa764905de1a8033..ad942334496c8565447d19e79cb83eba622bee2d 100644 (file)
@@ -56,6 +56,7 @@ class BModulePage(BWizardPage):
             checkBox.setChecked(modules[module]["enabled"])
     
     def _fillPropertyTable(self):
+        self.savePage()
         module = self._currentModule()
         configuration = self._projectInfoRetrieve("MODULES")[module]["configuration"]
         configurations = self._projectInfoRetrieve("CONFIGURATIONS")[configuration]
@@ -201,4 +202,8 @@ class BModulePage(BWizardPage):
                 unsatisfied |= set([module])
                 if dependency not in unsatisfied:
                     unsatisfied |= self.unselectDependencyCheck(module)
-        return unsatisfied
\ No newline at end of file
+        return unsatisfied
+    
+    def savePage(self):
+        for index in range(self.pageContent.propertyTable.rowCount()):
+            print qvariant_converter.getString(self.pageContent.propertyTable.item(index, 0).data(Qt.UserRole))
\ No newline at end of file