aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/MenuEntryCompare.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-09-24 00:14:59 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-09-24 00:14:59 +0000
commit4eac43bf1c66847feef1711990e4c67043f90d79 (patch)
treec69918366117b76ee38d6a793647115d59626717 /lib/python/Components/Converter/MenuEntryCompare.py
parentf94cd9f9cd9f8cb6ace109e58c060d820fc23f7d (diff)
downloadenigma2-4eac43bf1c66847feef1711990e4c67043f90d79.tar.gz
enigma2-4eac43bf1c66847feef1711990e4c67043f90d79.zip
push down initial 'changed' event
Diffstat (limited to 'lib/python/Components/Converter/MenuEntryCompare.py')
-rw-r--r--lib/python/Components/Converter/MenuEntryCompare.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Components/Converter/MenuEntryCompare.py b/lib/python/Components/Converter/MenuEntryCompare.py
index 42cdc5d1..9f8228e1 100644
--- a/lib/python/Components/Converter/MenuEntryCompare.py
+++ b/lib/python/Components/Converter/MenuEntryCompare.py
@@ -20,6 +20,7 @@ class MenuEntryCompare(Converter, object):
boolean = property(getBool)
- def changed(self, *args, **kwargs):
- if args[0][0] == self.CHANGED_DEFAULT:
+ def changed(self, what):
+ if what[0] == self.CHANGED_DEFAULT:
self.source.onSelectionChanged.append(self.selChanged)
+ Converter.changed(self, what)