Add the second page in the main function
[bertos.git] / 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_())