aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/EventInfo.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-26 13:30:26 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-26 13:30:26 +0000
commit9c22bd14f76cbc38c14d417dc185cdcdfc610665 (patch)
treeb278e7bbf51e9b9058eebc675475770f5cb20211 /lib/python/Components/EventInfo.py
parentbb9ce4897ba4326cd0cdf4b394631c679ba353dc (diff)
downloadenigma2-9c22bd14f76cbc38c14d417dc185cdcdfc610665.tar.gz
enigma2-9c22bd14f76cbc38c14d417dc185cdcdfc610665.zip
follow api changes
Diffstat (limited to 'lib/python/Components/EventInfo.py')
-rw-r--r--lib/python/Components/EventInfo.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/Components/EventInfo.py b/lib/python/Components/EventInfo.py
index 36a5aa4d..de16a173 100644
--- a/lib/python/Components/EventInfo.py
+++ b/lib/python/Components/EventInfo.py
@@ -13,13 +13,13 @@ class EventInfo(PerServiceDisplay):
Next_StartTime = 5
def __init__(self, navcore, now_or_next):
- # listen to evUpdatedEventInfo and evStopService
- # note that evStopService will be called once to establish a known state
+ # listen to evUpdatedEventInfo and evEnd
+ # note that evEnd will be called once to establish a known state
self.now_or_next = now_or_next
PerServiceDisplay.__init__(self, navcore,
{
- pNavigation.evUpdatedEventInfo: self.ourEvent,
- pNavigation.evStopService: self.stopEvent
+ iPlayableService.evUpdatedEventInfo: self.ourEvent,
+ iPlayableService.evEnd: self.stopEvent
})
def ourEvent(self):
@@ -53,8 +53,8 @@ class EventInfoProgress(PerServiceDisplayProgress, EventInfo):
self.now_or_next = now_or_next
PerServiceDisplayProgress.__init__(self, navcore,
{
- pNavigation.evUpdatedEventInfo: self.ourEvent,
- pNavigation.evStopService: self.stopEvent
+ iPlayableService.evUpdatedEventInfo: self.ourEvent,
+ iPlayableService.evEnd: self.stopEvent
})
def update(self, ev):