Add a stub of the configuration storing procedure
[bertos.git] / 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