X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2FBVersionPage.py;h=23f6fb01b299efac4cb2848238fca03deedd31d4;hb=60b288a6848432f22172ebd0e9a590b6faaa187c;hp=452e8a947309637d75906199b3ae0674894157e8;hpb=ec8c7a72981bd819fba072cf53404bae3d9cee46;p=bertos.git diff --git a/wizard/BVersionPage.py b/wizard/BVersionPage.py index 452e8a94..23f6fb01 100644 --- a/wizard/BVersionPage.py +++ b/wizard/BVersionPage.py @@ -65,18 +65,10 @@ class BVersionPage(BWizardPage): # Remove the trailing slash if sources_path.endswith(os.sep): sources_path = sources_path[:-1] - self.setProjectInfo("SOURCES_PATH", sources_path) + self.setProjectInfo("BERTOS_PATH", sources_path) return True else: return False - - def nextId(self): - """ - Overload of the QWizard nextId method. - """ - # Pick up the class stored into the project in the 'folder' step - page_class = self.projectInfo("ROUTE") - return self.wizard().pageIndex(page_class) #### @@ -192,13 +184,11 @@ class BVersionPage(BWizardPage): Fills the version list with all the BeRTOS versions founded in the QSettings. """ versions = set([]) - if self._edit: - versions.add(self.projectInfo("SOURCES_PATH")) if os.name == "nt": import winreg_importer versions |= set([os.path.normpath(dir) for dir in winreg_importer.getBertosDirs()]) versions |= set([os.path.normpath(dir) for dir in self.versions()]) - selected = self.projectInfo("SOURCES_PATH") + selected = self.projectInfo("BERTOS_PATH") for directory in versions: item = self.insertListElement(directory) if selected and selected == directory: