aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-10 16:21:24 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-10 16:21:24 +0000
commit732961ea798182d334d26e2fa2ce8d91672a932f (patch)
treefbdfe00718321e78ca5c793c3b7192b805097bf0 /lib/python/Components
parent2f71009743e6a1a516b82ac06c4a89ee4d6ea703 (diff)
downloadenigma2-732961ea798182d334d26e2fa2ce8d91672a932f.tar.gz
enigma2-732961ea798182d334d26e2fa2ce8d91672a932f.zip
handle additional arguments for 'changed'
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Element.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Element.py b/lib/python/Components/Element.py
index fc709139..5b8bed86 100644
--- a/lib/python/Components/Element.py
+++ b/lib/python/Components/Element.py
@@ -44,5 +44,5 @@ class Element:
self.disconnectAll()
# default action: push downstream
- def changed(self):
- self.downstream_elements.changed()
+ def changed(self, *args, **kwargs):
+ self.downstream_elements.changed(*args, **kwargs)