convert radiotext in c++ part to utf8
[vuplus_dvbapp] / lib / python / Components / Converter / RadioText.py
index 59885c0..e69de29 100644 (file)
@@ -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)