diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-01-26 13:26:04 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-01-26 13:26:04 +0000 |
| commit | 97c347d7218f5ec627f202f771f28a7ef5129be3 (patch) | |
| tree | 2f571d64c8a1113d1401897cff7d35d4a6ca1d0b /lib/python/Components/ServiceName.py | |
| parent | a44c8df41652c299a74eed799dba199738632548 (diff) | |
| download | enigma2-97c347d7218f5ec627f202f771f28a7ef5129be3.tar.gz enigma2-97c347d7218f5ec627f202f771f28a7ef5129be3.zip | |
follow core event changes
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): |
