- fixed lib/Makefile.am for "components" directory
[enigma2.git] / mytest.py
index 2f6cecfd40b0f8db6fde9b675f8b5446a78f18b7..4712ba116a6389572563dea867dd060b59408bf3 100644 (file)
--- a/mytest.py
+++ b/mytest.py
@@ -101,16 +101,16 @@ class Session:
        def keyEvent(self, code):
 #              print "code " + str(code)
                if code == 32:
-                       self.currentDialog.data["okbutton"]["instance"].push()
+                       self.currentDialog["okbutton"].instance.push()
 
                if code == 33:
-                       self.currentDialog.data["channelSwitcher"]["instance"].push()
+                       self.currentDialog["channelSwitcher"].instance.push()
                
                if code >= 0x30 and code <= 0x39:
                        try:
-                               self.currentDialog.data["menu"]["instance"].moveSelection(code - 0x31)
+                               self.currentDialog["menu"].instance.moveSelection(code - 0x31)
                        except:
-                               self.currentDialog.data["list"]["instance"].moveSelection(code - 0x31)
+                               self.currentDialog["list"].instance.moveSelection(code - 0x31)
 
        def close(self):
                self.delayTimer.start(0, 1)