From aed130dec1e35bf1907d82b6ee18fee965bde091 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Sat, 3 Sep 2005 00:18:08 +0000 Subject: configBoolean is now configSelection --- lib/python/Components/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/python/Components/config.py') 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 = "" -- cgit v1.2.3