From ca558082f22dae91eb287394b60d37e3cb704d6a Mon Sep 17 00:00:00 2001 From: duplo Date: Mon, 26 Jan 2009 18:59:57 +0000 Subject: [PATCH] Add a stub of the configuration storing procedure git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2224 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/BModulePage.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wizard/BModulePage.py b/wizard/BModulePage.py index 48ad0892..ad942334 100644 --- a/wizard/BModulePage.py +++ b/wizard/BModulePage.py @@ -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 -- 2.25.1