service: add sort of servicelist including all required layers
[enigma2.git] / lib / python / Components / TimerList.py
index da005b018a724290d308cf20de04666d3e2e0c1f..18c5cb134a250c5973944130ce7366afc23538df 100644 (file)
@@ -23,7 +23,7 @@ RT_WRAP = 32
 #  | <start>                     <end>  |
 #
 def TimerEntry(timer, processed):
 #  | <start>                     <end>  |
 #
 def TimerEntry(timer, processed):
-       res = [ ]
+       res = [ timer ]
        
        res.append((0, 0, 400, 30, 0, RT_HALIGN_LEFT, timer.service_ref.getServiceName()))
        res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, "%s, %s" % FuzzyTime(timer.begin)))
        
        res.append((0, 0, 400, 30, 0, RT_HALIGN_LEFT, timer.service_ref.getServiceName()))
        res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, "%s, %s" % FuzzyTime(timer.begin)))
@@ -45,7 +45,7 @@ class TimerList(HTMLComponent, GUIComponent):
        def getCurrent(self):
                return self.l.getCurrentSelection()
        
        def getCurrent(self):
                return self.l.getCurrentSelection()
        
-       def GUIcreate(self, parent, skindata):
+       def GUIcreate(self, parent):
                self.instance = eListbox(parent)
                self.instance.setContent(self.l)
                self.instance.setItemHeight(50)
                self.instance = eListbox(parent)
                self.instance.setContent(self.l)
                self.instance.setItemHeight(50)