aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ActionMap.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-04-09 21:56:50 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-04-09 21:56:50 +0000
commit9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d (patch)
tree79fe085266617752c75f38a2e9fb37008a400b35 /lib/python/Components/ActionMap.py
parent53cccbdf7f4b485d295689d6ce9fd77a01694602 (diff)
downloadenigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.tar.gz
enigma2-9a0d02d2e74c24dcc7b8bfe6df937e92c8af1d0d.zip
add destroy() for Components to fix bug #52
Diffstat (limited to 'lib/python/Components/ActionMap.py')
-rw-r--r--lib/python/Components/ActionMap.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Components/ActionMap.py b/lib/python/Components/ActionMap.py
index a6f5eb9c..ee3d31db 100644
--- a/lib/python/Components/ActionMap.py
+++ b/lib/python/Components/ActionMap.py
@@ -50,6 +50,9 @@ class ActionMap:
print "unknown action %s/%s! typo in keymap?" % (context, action)
return 0
+ def destroy(self):
+ pass
+
class NumberActionMap(ActionMap):
def action(self, contexts, action):
numbers = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]