aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-06 19:22:33 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-06 19:22:33 +0000
commit7a08d41d8576c31b64a6e638c326b21def981757 (patch)
treebd3a49282ac3c97cf7a66e884f873ef7d4ec6afa /lib/python/Components
parent61a5da5640d69cb3a97dd689c7e1abc548ad8386 (diff)
downloadenigma2-7a08d41d8576c31b64a6e638c326b21def981757.tar.gz
enigma2-7a08d41d8576c31b64a6e638c326b21def981757.zip
reoder derivation
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Label.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Label.py b/lib/python/Components/Label.py
index c4efcda4..730a01e5 100644
--- a/lib/python/Components/Label.py
+++ b/lib/python/Components/Label.py
@@ -30,7 +30,7 @@ class Label(HTMLComponent, GUIComponent, VariableText):
def hide(self):
self.instance.hide()
-class LabelConditional(ConditionalWidget, Label):
+class LabelConditional(Label, ConditionalWidget):
def __init__(self, text = "", withTimer = True):
ConditionalWidget.__init__(self, withTimer = withTimer)
Label.__init__(self, text = text) \ No newline at end of file