handle additional arguments for 'changed'
authorFelix Domke <tmbinc@elitedvb.net>
Mon, 10 Jul 2006 16:21:24 +0000 (16:21 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Mon, 10 Jul 2006 16:21:24 +0000 (16:21 +0000)
lib/python/Components/Element.py

index fc709139eb8802e6c9bb5b6320e71fca4801fffd..5b8bed866cf1368c88fbb8574b7e46121fc87726 100644 (file)
@@ -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)