aboutsummaryrefslogtreecommitdiff
path: root/mytest.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 03:31:42 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-11 03:31:42 +0000
commit939e78997bc25b22b3270ae3e298b0cc49becdbf (patch)
tree830a0c24b2513d0d158c14b459c6fc4c84ee6445 /mytest.py
parent700f532b8d7fb96ec6af2ac54526f66a834623c3 (diff)
downloadenigma2-939e78997bc25b22b3270ae3e298b0cc49becdbf.tar.gz
enigma2-939e78997bc25b22b3270ae3e298b0cc49becdbf.zip
rename a baseclass wizard for further wizards
derive a StartWizard-class from this wizard-baseclass each wizard now has a listbox, a configlist, a text-label and a xml file describing the wizard
Diffstat (limited to 'mytest.py')
-rw-r--r--mytest.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/mytest.py b/mytest.py
index 206802e7..42bcd3ee 100644
--- a/mytest.py
+++ b/mytest.py
@@ -16,7 +16,8 @@ from Navigation import Navigation
from skin import readSkin, applyAllAttributes
from Components.config import configfile
-from Screens.Wizard import listActiveWizards
+from Screens.Wizard import wizardManager
+from Screens.StartWizard import *
from Tools.BoundFunction import boundFunction
had = dict()
@@ -177,7 +178,7 @@ def runScreenTest():
session.nav = Navigation()
- screensToRun = listActiveWizards()
+ screensToRun = wizardManager.getWizards()
screensToRun.append(Screens.InfoBar.InfoBar)
def runNextScreen(session, screensToRun, *result):