From: duplo Date: Wed, 10 Dec 2008 16:59:58 +0000 (+0000) Subject: Add the second page in the main function X-Git-Tag: 2.1.0~689 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=822e1e1d3156d2b1e66b69f52b07c6e8dc2e3166;p=bertos.git Add the second page in the main function git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1993 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/wizard/bertos.py b/wizard/bertos.py index 124a4531..d4d8823f 100644 --- a/wizard/bertos.py +++ b/wizard/bertos.py @@ -13,6 +13,7 @@ import sys from PyQt4.QtCore import * from PyQt4.QtGui import * import BStartPage +import BVersionPage def main(): app = QApplication(sys.argv) @@ -20,6 +21,7 @@ def main(): wizard = QWizard() wizard.setWindowTitle("Welcome in beRTOS configuration wizard") wizard.addPage(startPage) + wizard.addPage(BVersionPage.BVersionPage()) wizard.show() sys.exit(app.exec_())