code cleanup
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 2 Aug 2007 14:07:44 +0000 (14:07 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Thu, 2 Aug 2007 14:07:44 +0000 (14:07 +0000)
lib/python/Components/Sources/Event.py

index ba135acf41e8f32fea44d7dc3f8125a519445773..6cab6d39eeda8480e3ff91ed94423b2339089914 100644 (file)
@@ -1,17 +1,10 @@
-from Components.VariableText import VariableText
-from Components.GUIComponent import GUIComponent
-from enigma import eLabel
 from Source import Source
 
 from Source import Source
 
-class Event(VariableText, GUIComponent, Source, object):
+class Event(Source, object):
        def __init__(self):
                Source.__init__(self)
        def __init__(self):
                Source.__init__(self)
-               GUIComponent.__init__(self)
-               VariableText.__init__(self)
                self.evt = None
 
                self.evt = None
 
-       GUI_WIDGET = eLabel
-
        def getCurrentEvent(self):
                return self.evt
 
        def getCurrentEvent(self):
                return self.evt