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 fc70913..5b8bed8 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)