From: duplo Date: Thu, 18 Dec 2008 12:05:59 +0000 (+0000) Subject: Adapt the bertos.py startup script for the new BWizard class X-Git-Tag: 2.1.0~605 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=5e43836a6aa9b139202456aa9fde47918dff7a8b;p=bertos.git Adapt the bertos.py startup script for the new BWizard class git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2077 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos.py b/wizard/bertos.py index 387da00c..fea420da 100644 --- a/wizard/bertos.py +++ b/wizard/bertos.py @@ -17,17 +17,10 @@ from PyQt4.QtGui import * import BProject import BStartPage - -import BFolderPage -import BVersionPage -import BCpuPage +import BWizard def newProject(): - wizard = QWizard() - wizard.setWindowTitle("Create a BeRTOS project") - wizard.addPage(BFolderPage.BFolderPage()) - wizard.addPage(BVersionPage.BVersionPage()) - wizard.addPage(BCpuPage.BCpuPage()) + wizard = BWizard.BWizard() wizard.show() wizard.exec_()