diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-08-02 14:07:44 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-08-02 14:07:44 +0000 |
| commit | 4b5d1d5b9f1a99d78a74293949183c32a74b9ec9 (patch) | |
| tree | 449320cb8af7076dac6923284c291fd5cfb13522 /lib/python/Components | |
| parent | a68abaddf31f9bad3affe6d7f81047dc89ec2a4e (diff) | |
| download | enigma2-4b5d1d5b9f1a99d78a74293949183c32a74b9ec9.tar.gz enigma2-4b5d1d5b9f1a99d78a74293949183c32a74b9ec9.zip | |
code cleanup
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/Sources/Event.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/python/Components/Sources/Event.py b/lib/python/Components/Sources/Event.py index ba135acf..6cab6d39 100644 --- a/lib/python/Components/Sources/Event.py +++ b/lib/python/Components/Sources/Event.py @@ -1,17 +1,10 @@ -from Components.VariableText import VariableText -from Components.GUIComponent import GUIComponent -from enigma import eLabel from Source import Source -class Event(VariableText, GUIComponent, Source, object): +class Event(Source, object): def __init__(self): Source.__init__(self) - GUIComponent.__init__(self) - VariableText.__init__(self) self.evt = None - GUI_WIDGET = eLabel - def getCurrentEvent(self): return self.evt |
