diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-11-11 15:15:45 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2005-11-11 15:15:45 +0000 |
| commit | bdb316e040fe0e4d958a2dae1611bd18162a45ac (patch) | |
| tree | fb6c9d190e2105745bef66ce57696d56a2ddff0c /lib/python/Components | |
| parent | cbaa4012ef5481091ac9b206e29e4c396859abe2 (diff) | |
| download | enigma2-bdb316e040fe0e4d958a2dae1611bd18162a45ac.tar.gz enigma2-bdb316e040fe0e4d958a2dae1611bd18162a45ac.zip | |
corret use for getCurrent method
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/EpgList.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py index 5fa5476a..56282581 100644 --- a/lib/python/Components/EpgList.py +++ b/lib/python/Components/EpgList.py @@ -9,9 +9,8 @@ class EPGList(HTMLComponent, GUIComponent): self.l = eListboxEPGContent() def getCurrent(self): - r = eServiceEventPtr() - self.l.getCurrent(r) - return r + evt = self.l.getCurrent() + return evt def moveUp(self): self.instance.moveSelection(self.instance.moveUp) |
