aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/ServiceList.py
diff options
context:
space:
mode:
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: