aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ServiceList.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-04-23 11:32:18 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-04-23 11:32:18 +0000
commitfe0534f76b59b814caca3648933c45d3add31889 (patch)
treea05bb683ae8dfb6c73f48be5940590b9aa6e923d /lib/python/Components/ServiceList.py
parentf80cd44acb9f06d348f3b0fb09036d7db7e83b66 (diff)
downloadenigma2-fe0534f76b59b814caca3648933c45d3add31889.tar.gz
enigma2-fe0534f76b59b814caca3648933c45d3add31889.zip
prepare for skin updating and scaling
Diffstat (limited to 'lib/python/Components/ServiceList.py')
-rw-r--r--lib/python/Components/ServiceList.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/ServiceList.py b/lib/python/Components/ServiceList.py
index ced4b0c3..059b8906 100644
--- a/lib/python/Components/ServiceList.py
+++ b/lib/python/Components/ServiceList.py
@@ -45,7 +45,7 @@ class ServiceList(HTMLComponent, GUIComponent):
self.mode = self.MODE_NORMAL
self.onSelectionChanged = [ ]
- def applySkin(self, desktop):
+ def applySkin(self, desktop, parent):
attribs = [ ]
if self.skinAttributes is not None:
attribs = [ ]
@@ -63,7 +63,7 @@ class ServiceList(HTMLComponent, GUIComponent):
else:
attribs.append((attrib, value))
self.skinAttributes = attribs
- return GUIComponent.applySkin(self, desktop)
+ return GUIComponent.applySkin(self, desktop, parent)
def connectSelChanged(self, fnc):
if not fnc in self.onSelectionChanged: