aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-14 20:36:17 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-14 20:36:17 +0000
commit71dabb34a1b8002e7f1d055ac30113ba99ff886a (patch)
tree2ddcb4290a38af5629ecba0738cd7f205f51b599 /lib/python
parent17da0f641e6aabaaf8e97a4a1a1abae2f7153e8c (diff)
downloadenigma2-71dabb34a1b8002e7f1d055ac30113ba99ff886a.tar.gz
enigma2-71dabb34a1b8002e7f1d055ac30113ba99ff886a.zip
fix
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ServiceScan.py4
-rw-r--r--lib/python/enigma_python.i1
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/Screens/ServiceScan.py b/lib/python/Screens/ServiceScan.py
index 8d58aa12..b09353f0 100644
--- a/lib/python/Screens/ServiceScan.py
+++ b/lib/python/Screens/ServiceScan.py
@@ -3,6 +3,7 @@ from Components.ServiceScan import ServiceScan as CScan
from Components.ProgressBar import ProgressBar
from Components.Label import Label
from Components.ActionMap import ActionMap
+from Components.FIFOList import FIFOList
class ServiceScan(Screen):
def ok(self):
@@ -20,7 +21,8 @@ class ServiceScan(Screen):
self["scan_progress"] = ProgressBar()
self["scan_state"] = Label(_("scan state"))
- self["scan"] = CScan(self["scan_progress"], self["scan_state"], transponders, feid, flags)
+ self["servicelist"] = FIFOList(len=7)
+ self["scan"] = CScan(self["scan_progress"], self["scan_state"], self["servicelist"], transponders, feid, flags)
self["actions"] = ActionMap(["OkCancelActions"],
{
diff --git a/lib/python/enigma_python.i b/lib/python/enigma_python.i
index 5a6f126e..8029a265 100644
--- a/lib/python/enigma_python.i
+++ b/lib/python/enigma_python.i
@@ -142,6 +142,7 @@ typedef long time_t;
%immutable eButton::selected;
%immutable eInput::changed;
%immutable eComponentScan::statusChanged;
+%immutable eComponentScan::newService;
%immutable pNavigation::m_event;
%include <lib/gdi/font.h>