aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-29 01:10:35 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-10-29 01:10:35 +0000
commitb332b11ee2f3fd450493b55507324c74d96b20e8 (patch)
treed6aba6bc4eafca1d317a341f1a92a97d372e1e23 /lib/python/Components
parent70e31a71b96ab395123c0620c841d913005304f3 (diff)
downloadenigma2-b332b11ee2f3fd450493b55507324c74d96b20e8.tar.gz
enigma2-b332b11ee2f3fd450493b55507324c74d96b20e8.zip
convert radiotext in c++ part to utf8
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Converter/RadioText.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/python/Components/Converter/RadioText.py b/lib/python/Components/Converter/RadioText.py
index 59885c0a..e69de29b 100644
--- a/lib/python/Components/Converter/RadioText.py
+++ b/lib/python/Components/Converter/RadioText.py
@@ -1,17 +0,0 @@
-from Components.Converter.Converter import Converter
-from Components.Element import cached
-
-class RadioText(Converter, object):
- def __init__(self, type):
- Converter.__init__(self, type)
- self.type = type
-
- @cached
- def getText(self):
- rt = self.source.radiotext
- text = ""
- if rt:
- if self.type == "RadioText":
- text = rt.getRadioText()
- return text.decode("latin-1").encode("utf-8")
- text = property(getText)