diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2005-05-05 23:38:56 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2005-05-05 23:38:56 +0000 |
| commit | 4220c7211df32b7c5baff6f48b375b79dcf9c328 (patch) | |
| tree | ec0f891c624490f79fb24c90d371fa2f0e6f8fa6 | |
| parent | a4da9cccc2575c4bf299bde9594dad3e049ddf6a (diff) | |
| download | enigma2-4220c7211df32b7c5baff6f48b375b79dcf9c328.tar.gz enigma2-4220c7211df32b7c5baff6f48b375b79dcf9c328.zip | |
- fix mytest to follow changes
| -rw-r--r-- | mytest.py | 11 |
1 files changed, 3 insertions, 8 deletions
@@ -1,12 +1,13 @@ from enigma import * from tools import * +import Screens.InfoBar + import RecordTimer import sys import time -from screens import * from skin import applyGUIskin # A screen is a function which instanciates all components of a screen into a temporary component. @@ -36,12 +37,6 @@ def dump(dir, p = ""): # + ":" + str(dir.__class__) -# defined components -components = {} - -# do global -doGlobal(components) - # display class OutputDevice: @@ -210,7 +205,7 @@ def runScreenTest(): session.nav = Navigation() - session.open(infoBar) + session.open(Screens.InfoBar.InfoBar) CONNECT(keyPressedSignal(), session.keyEvent) |
