Add the second page in the main function
authorduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 10 Dec 2008 16:59:58 +0000 (16:59 +0000)
committerduplo <duplo@38d2e660-2303-0410-9eaa-f027e97ec537>
Wed, 10 Dec 2008 16:59:58 +0000 (16:59 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1993 38d2e660-2303-0410-9eaa-f027e97ec537

wizard/bertos.py

index 124a453106e20a01e4de3007a6daeec7f0854f94..d4d8823f8cbf73d82ad440a90849f4d02df34886 100644 (file)
@@ -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_())