aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/AVSwitch.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-03 00:18:08 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-03 00:18:08 +0000
commitaed130dec1e35bf1907d82b6ee18fee965bde091 (patch)
treec1cb1ca6cfec74007057d8953b1b5de306bfe43a /lib/python/Components/AVSwitch.py
parent0a2ebc75611941d43114f7cd07fb944ae098bf7f (diff)
downloadenigma2-aed130dec1e35bf1907d82b6ee18fee965bde091.tar.gz
enigma2-aed130dec1e35bf1907d82b6ee18fee965bde091.zip
configBoolean is now configSelection
Diffstat (limited to 'lib/python/Components/AVSwitch.py')
-rw-r--r--lib/python/Components/AVSwitch.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/Components/AVSwitch.py b/lib/python/Components/AVSwitch.py
index fea27a65..938f88ea 100644
--- a/lib/python/Components/AVSwitch.py
+++ b/lib/python/Components/AVSwitch.py
@@ -21,12 +21,12 @@ class AVSwitch:
def InitAVSwitch():
config.av = ConfigSubsection();
- config.av.colorformat = configElement("config.av.colorformat", configBoolean, 1, ("CVBS", "RGB", "S-Video") );
- config.av.aspectratio = configElement("config.av.aspectratio", configBoolean, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") );
- config.av.tvsystem = configElement("config.av.tvsystem", configBoolean, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
- config.av.wss = configElement("config.av.wss", configBoolean, 0, ("Enable", "Disable") );
- config.av.defaultac3 = configElement("config.av.defaultac3", configBoolean, 1, ("Enable", "Disable") );
- config.av.vcrswitch = configElement("config.av.vcrswitch", configBoolean, 0, ("Enable", "Disable") );
+ config.av.colorformat = configElement("config.av.colorformat", configSelection, 1, ("CVBS", "RGB", "S-Video") );
+ config.av.aspectratio = configElement("config.av.aspectratio", configSelection, 0, ("4:3 Letterbox", "4:3 PanScan", "16:9", "16:9 always") );
+ config.av.tvsystem = configElement("config.av.tvsystem", configSelection, 0, ("PAL", "PAL + PAL60", "Multi", "NTSC") );
+ config.av.wss = configElement("config.av.wss", configSelection, 0, ("Enable", "Disable") );
+ config.av.defaultac3 = configElement("config.av.defaultac3", configSelection, 1, ("Enable", "Disable") );
+ config.av.vcrswitch = configElement("config.av.vcrswitch", configSelection, 0, ("Enable", "Disable") );
iAVSwitch = AVSwitch()