aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/InfoBar.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/Screens/InfoBar.py
parentbb9ce4897ba4326cd0cdf4b394631c679ba353dc (diff)
downloadenigma2-9c22bd14f76cbc38c14d417dc185cdcdfc610665.tar.gz
enigma2-9c22bd14f76cbc38c14d417dc185cdcdfc610665.zip
follow api changes
Diffstat (limited to 'lib/python/Screens/InfoBar.py')
-rw-r--r--lib/python/Screens/InfoBar.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index 147f891b..51e77a8b 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -16,7 +16,7 @@ from Screens.InfoBarGenerics import InfoBarShowHide, \
InfoBarEPG, InfoBarEvent, InfoBarServiceName, InfoBarSeek, InfoBarInstantRecord, \
InfoBarAudioSelection, InfoBarAdditionalInfo, InfoBarNotifications, InfoBarDish, \
InfoBarSubserviceSelection, InfoBarTuner, InfoBarShowMovies, InfoBarTimeshift, \
- InfoBarServiceNotifications
+ InfoBarServiceNotifications, InfoBarPVRState
from Screens.HelpMenu import HelpableScreen, HelpMenu
@@ -65,7 +65,7 @@ class InfoBar(Screen, InfoBarShowHide, InfoBarPowerKey,
class MoviePlayer(Screen, InfoBarShowHide, InfoBarPowerKey, \
InfoBarMenu, \
InfoBarServiceName, InfoBarSeek, InfoBarShowMovies, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications,
- InfoBarServiceNotifications):
+ InfoBarServiceNotifications, InfoBarPVRState):
def __init__(self, session, service):
Screen.__init__(self, session)
@@ -78,7 +78,7 @@ class MoviePlayer(Screen, InfoBarShowHide, InfoBarPowerKey, \
for x in HelpableScreen, InfoBarShowHide, InfoBarPowerKey, InfoBarMenu, \
InfoBarServiceName, InfoBarSeek, InfoBarShowMovies, \
InfoBarAudioSelection, InfoBarNotifications, \
- InfoBarServiceNotifications:
+ InfoBarServiceNotifications, InfoBarPVRState:
x.__init__(self)
self["CurrentTime"] = ServicePosition(self.session.nav, ServicePosition.TYPE_REMAINING)