X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FComponents%2FConverter%2FStringList.py;fp=lib%2Fpython%2FComponents%2FConverter%2FStringList.py;h=ed2646519978415b1b14e02bdcd45f53ebe3781c;hb=ddb050fe8357a01b1fc52070ee9f87450c407c1c;hp=d542197684739588f4f488234d849f66c38a840c;hpb=1557c715e461d5a7deb04bb008c6497441351bbe;p=vuplus_dvbapp diff --git a/lib/python/Components/Converter/StringList.py b/lib/python/Components/Converter/StringList.py index d542197..ed26465 100644 --- a/lib/python/Components/Converter/StringList.py +++ b/lib/python/Components/Converter/StringList.py @@ -7,11 +7,11 @@ class StringList(Converter): def __init__(self, type): Converter.__init__(self, type) - def changed(self): + def changed(self, what): self.content = eListboxPythonStringContent() if self.source: self.content.setList(self.source.list) - self.downstream_elements.changed() + self.downstream_elements.changed(what) def selectionChanged(self, index): self.source.selectionChanged(index)