load cutlist on initial create
[enigma2.git] / lib / python / Components / ServiceName.py
index c96b79f4e246d436521e7911fda0f80b20780ee3..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,23 +0,0 @@
-from PerServiceDisplay import *
-
-from enigma import pNavigation, iServiceInformationPtr
-
-class ServiceName(PerServiceDisplay):
-       def __init__(self, navcore):
-               PerServiceDisplay.__init__(self, navcore,
-                       {
-                               pNavigation.evNewService: self.newService,
-                               pNavigation.evStopService: self.stopEvent
-                       })
-
-       def newService(self):
-               info = iServiceInformationPtr()
-               service = self.navcore.getCurrentService()
-               
-               if service != None:
-                       if not service.info(info):
-                               self.setText(info.getName())
-       
-       def stopEvent(self):
-                       self.setText("");
-