diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 18:45:26 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 18:45:26 +0000 |
| commit | e635b7a6b5ba34a299c952833bff5158d6c09fad (patch) | |
| tree | 6eaf8f3dda99de8abd20115e05e6f91d05cb5a72 /lib/python/Components | |
| parent | 4283696371a06f44605f9d005957bc8837c66e0d (diff) | |
| download | enigma2-e635b7a6b5ba34a299c952833bff5158d6c09fad.tar.gz enigma2-e635b7a6b5ba34a299c952833bff5158d6c09fad.zip | |
fill configlist with correct entries
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index c7421842..f8e8fd13 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -30,9 +30,17 @@ def configEntry(obj): class Config: def __init__(self): pass - def Slider(self): # ok??? + def Slider(self,reg): # ok??? pass + def getControlType(self, reg): + print "getControlType " + reg + #find the correct type in class-members + if reg == "blasel": + return configBoolean(reg) + + return configBoolean(reg) + config = Config(); class ConfigSubsection: |
