diff options
Diffstat (limited to 'lib/python/Components/ServiceName.py')
| -rw-r--r-- | lib/python/Components/ServiceName.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/ServiceName.py b/lib/python/Components/ServiceName.py index a9c0930a..c3cd8f03 100644 --- a/lib/python/Components/ServiceName.py +++ b/lib/python/Components/ServiceName.py @@ -1,14 +1,14 @@ from PerServiceDisplay import * -#from enigma import pNavigation, iServiceInformationPtr +#from enigma import iPlayableService, iServiceInformationPtr from enigma import * class ServiceName(PerServiceDisplay): def __init__(self, navcore): PerServiceDisplay.__init__(self, navcore, { - pNavigation.evNewService: self.newService, - pNavigation.evStopService: self.stopEvent + iPlayableService.evStart: self.newService, + iPlayableService.evEnd: self.stopEvent }) def newService(self): |
