aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/MenuEntryCompare.py
diff options
context:
space:
mode:
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)