aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Slider.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-05-01 11:47:04 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-05-01 11:47:04 +0000
commitc0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3 (patch)
tree22d7ac7e4f0aaf3b91574d81ac30fd6a9d97fdb7 /lib/python/Components/Slider.py
parent9c5ae5bc6ef248b414e3153538936477cccfdd20 (diff)
downloadenigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.tar.gz
enigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.zip
simplify GUIcreate/createWidget, fix base class order
Diffstat (limited to 'lib/python/Components/Slider.py')
-rw-r--r--lib/python/Components/Slider.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/Slider.py b/lib/python/Components/Slider.py
index dae13d9c..e61b47f4 100644
--- a/lib/python/Components/Slider.py
+++ b/lib/python/Components/Slider.py
@@ -5,7 +5,7 @@ from VariableText import *
from enigma import eSlider
-class Slider(HTMLComponent, GUIComponent, VariableValue):
+class Slider(VariableValue, HTMLComponent, GUIComponent):
def __init__(self, min, max):
VariableValue.__init__(self)
GUIComponent.__init__(self)
@@ -16,4 +16,4 @@ class Slider(HTMLComponent, GUIComponent, VariableValue):
def createWidget(self, parent):
g = eSlider(parent)
g.setRange(self.min, self.max)
- return g \ No newline at end of file
+ return g