diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-03 00:18:08 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-03 00:18:08 +0000 |
| commit | aed130dec1e35bf1907d82b6ee18fee965bde091 (patch) | |
| tree | c1cb1ca6cfec74007057d8953b1b5de306bfe43a /lib/python/Components/config.py | |
| parent | 0a2ebc75611941d43114f7cd07fb944ae098bf7f (diff) | |
| download | enigma2-aed130dec1e35bf1907d82b6ee18fee965bde091.tar.gz enigma2-aed130dec1e35bf1907d82b6ee18fee965bde091.zip | |
configBoolean is now configSelection
Diffstat (limited to 'lib/python/Components/config.py')
| -rw-r--r-- | lib/python/Components/config.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 8cd78712..1795d426 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -47,7 +47,7 @@ class configFile: fileHandle.close() -class configBoolean: +class configSelection: def __init__(self, parent): self.parent = parent @@ -186,7 +186,7 @@ class configElement: def datafromFile(self, control, data): if control == ConfigSlider: return int(data); - elif control == configBoolean: + elif control == configSelection: return int(data); elif control == configSequence: list = [ ] @@ -200,7 +200,7 @@ class configElement: def datatoFile(self, control, data): if control == ConfigSlider: return str(data); - elif control == configBoolean: + elif control == configSelection: return str(data); elif control == configSequence: value = "" |
