aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/AVSwitch.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-19 17:06:27 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-01-19 17:06:27 +0000
commit51845a7b8ea8bad523b083d1564e1b907fbdc84e (patch)
tree59bc49b03b4f71e60696af8babf64381596934a5 /lib/python/Components/AVSwitch.py
parent33ce69ca1622ce06f00661c5974d2fbb78e0c2d5 (diff)
downloadenigma2-51845a7b8ea8bad523b083d1564e1b907fbdc84e.tar.gz
enigma2-51845a7b8ea8bad523b083d1564e1b907fbdc84e.zip
add non working multi bouquet switch
Diffstat (limited to 'lib/python/Components/AVSwitch.py')
-rw-r--r--lib/python/Components/AVSwitch.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index d74ad258..b36dc4a2 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -55,18 +55,18 @@ def InitAVSwitch():
iAVSwitch = AVSwitch()
def setColorFormat(configElement):
- iAVSwitch.setColorFormat(configElement.value);
+ iAVSwitch.setColorFormat(configElement.value)
def setAspectRatio(configElement):
- iAVSwitch.setAspectRatio(configElement.value);
+ iAVSwitch.setAspectRatio(configElement.value)
def setSystem(configElement):
- iAVSwitch.setSystem(configElement.value);
+ iAVSwitch.setSystem(configElement.value)
def setWSS(configElement):
- iAVSwitch.setWSS(configElement.value);
+ iAVSwitch.setWSS(configElement.value)
# this will call the "setup-val" initial
- config.av.colorformat.addNotifier(setColorFormat);
- config.av.aspectratio.addNotifier(setAspectRatio);
- config.av.tvsystem.addNotifier(setSystem);
- config.av.wss.addNotifier(setWSS);
+ config.av.colorformat.addNotifier(setColorFormat)
+ config.av.aspectratio.addNotifier(setAspectRatio)
+ config.av.tvsystem.addNotifier(setSystem)
+ config.av.wss.addNotifier(setWSS)
iAVSwitch.setInput("ENCODER") # init on startup \ No newline at end of file