aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-15 23:42:47 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-11-15 23:42:47 +0000
commit17dacebf2ff4f85f23c96398287c0b1b23df6342 (patch)
tree2bc2953bf9cb000d3e69be0d1b167cd2f4168f83 /lib/python
parent3eb9956a9f20cf7537ade319a4af9c684562cbcb (diff)
downloadenigma2-17dacebf2ff4f85f23c96398287c0b1b23df6342.tar.gz
enigma2-17dacebf2ff4f85f23c96398287c0b1b23df6342.zip
add transponderlist
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ServiceScan.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/ServiceScan.py b/lib/python/Screens/ServiceScan.py
index e5df6304..c1059539 100644
--- a/lib/python/Screens/ServiceScan.py
+++ b/lib/python/Screens/ServiceScan.py
@@ -13,14 +13,14 @@ class ServiceScan(Screen):
def cancel(self):
self.close()
- def __init__(self, session):
+ def __init__(self, session, transponders):
Screen.__init__(self, session)
self.session.nav.stopService()
self["scan_progress"] = ProgressBar()
self["scan_state"] = Label("scan state")
- self["scan"] = CScan(self["scan_progress"], self["scan_state"])
+ self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders)
self["actions"] = ActionMap(["OkCancelActions"],
{