aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Clock.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/Clock.py
parent9c5ae5bc6ef248b414e3153538936477cccfdd20 (diff)
downloadenigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.tar.gz
enigma2-c0d78035b8c76e719bf7c05ff3812eb5a6ce9fe3.zip
simplify GUIcreate/createWidget, fix base class order
Diffstat (limited to 'lib/python/Components/Clock.py')
-rw-r--r--lib/python/Components/Clock.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/Clock.py b/lib/python/Components/Clock.py
index 9129acaf..ae828c4f 100644
--- a/lib/python/Components/Clock.py
+++ b/lib/python/Components/Clock.py
@@ -12,7 +12,7 @@ from config import config
import time
# now some "real" components:
-class Clock(HTMLComponent, GUIComponent, VariableText):
+class Clock(VariableText, HTMLComponent, GUIComponent):
def __init__(self):
VariableText.__init__(self)
GUIComponent.__init__(self)
@@ -43,4 +43,5 @@ class Clock(HTMLComponent, GUIComponent, VariableText):
# ...und als HTML:
def produceHTML(self):
+ # return T.b[self.getText()]
return self.getText()