aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Converter/StaticText.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:34:06 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-15 17:34:06 +0000
commit2e874fa14264bf37f17ae9b9375e26059e7f35ec (patch)
treeceb5244659b57714fb4609914f3146630f045c4a /lib/python/Components/Converter/StaticText.py
parente131b75fd194db84a37f2395b5ab88093e09192f (diff)
downloadenigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.tar.gz
enigma2-2e874fa14264bf37f17ae9b9375e26059e7f35ec.zip
add new skin stuff
Diffstat (limited to 'lib/python/Components/Converter/StaticText.py')
-rw-r--r--lib/python/Components/Converter/StaticText.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Components/Converter/StaticText.py b/lib/python/Components/Converter/StaticText.py
new file mode 100644
index 00000000..12eb6ad5
--- /dev/null
+++ b/lib/python/Components/Converter/StaticText.py
@@ -0,0 +1,7 @@
+from Components.Converter.Converter import Converter
+
+class StaticText(Converter, object):
+ def __init__(self, text, *args, **kwargs):
+ Converter.__init__(self)
+ self.text = str(text)
+