From 822e1e1d3156d2b1e66b69f52b07c6e8dc2e3166 Mon Sep 17 00:00:00 2001 From: duplo Date: Wed, 10 Dec 2008 16:59:58 +0000 Subject: [PATCH] Add the second page in the main function git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1993 38d2e660-2303-0410-9eaa-f027e97ec537 --- wizard/bertos.py | 2 ++ 1 file changed, 2 insertions(+) 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_()) -- 2.25.1