From: duplo Date: Mon, 22 Dec 2008 16:12:57 +0000 (+0000) Subject: Add the toolchain page to the wizard X-Git-Tag: 2.1.0~562 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=49448500694891fcf24026e904c5891d4521eb1d;p=bertos.git Add the toolchain page to the wizard git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2120 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/BWizard.py b/wizard/BWizard.py index b543966d..2996f2a1 100644 --- a/wizard/BWizard.py +++ b/wizard/BWizard.py @@ -15,6 +15,7 @@ from PyQt4.QtGui import * import BFolderPage import BVersionPage import BCpuPage +import BToolchainPage class BWizard(QWizard): @@ -28,6 +29,7 @@ class BWizard(QWizard): self.addPage(BFolderPage.BFolderPage()) self.addPage(BVersionPage.BVersionPage()) self.addPage(BCpuPage.BCpuPage()) + self.addPage(BToolchainPage.BToolchainPage()) def _connectSignals(self): self.connect(self, SIGNAL("currentIdChanged(int)"), self._pageChanged)