From 1889fbce45ea5471d15f95c04594d9aa2a429120 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 15 Jun 2006 17:39:02 +0000 Subject: remove GUIComponent from PerServiceDisplay --- lib/python/Components/PerServiceDisplay.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/python/Components/PerServiceDisplay.py') diff --git a/lib/python/Components/PerServiceDisplay.py b/lib/python/Components/PerServiceDisplay.py index 22305ca9..500538c3 100644 --- a/lib/python/Components/PerServiceDisplay.py +++ b/lib/python/Components/PerServiceDisplay.py @@ -5,9 +5,8 @@ from VariableValue import * from enigma import iPlayableService from enigma import eLabel, eSlider, eTimer -class PerServiceBase(GUIComponent): +class PerServiceBase(object): def __init__(self, navcore, eventmap): - GUIComponent.__init__(self) self.eventmap = eventmap self.navcore = navcore self.navcore.event.append(self.event) @@ -38,9 +37,10 @@ class PerServiceBase(GUIComponent): def poll(self): pass -class PerServiceDisplay(PerServiceBase, VariableText): +class PerServiceDisplay(PerServiceBase, VariableText, GUIComponent): """Mixin for building components which display something which changes on navigation events, for example "service name" """ def __init__(self, navcore, eventmap): + GUIComponent.__init__(self) VariableText.__init__(self) PerServiceBase.__init__(self, navcore, eventmap) -- cgit v1.2.3