aboutsummaryrefslogtreecommitdiff
path: root/lib/service/event.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2005-08-31 18:20:45 +0000
committerFelix Domke <tmbinc@elitedvb.net>2005-08-31 18:20:45 +0000
commit4269ecde13580077c4d234b21784f704bf43e8fc (patch)
tree424c0b80019cf49aac3421779902ffd9a2ab4ee2 /lib/service/event.cpp
parent169755aa6f9823ece2c51e720dbc4de6131c9308 (diff)
downloadenigma2-4269ecde13580077c4d234b21784f704bf43e8fc.tar.gz
enigma2-4269ecde13580077c4d234b21784f704bf43e8fc.zip
- fix character conversion for DVB
Diffstat (limited to 'lib/service/event.cpp')
-rw-r--r--lib/service/event.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/service/event.cpp b/lib/service/event.cpp
index 58079da0..482527cc 100644
--- a/lib/service/event.cpp
+++ b/lib/service/event.cpp
@@ -1,4 +1,5 @@
#include <lib/service/event.h>
+#include <lib/base/estring.h>
#include <lib/dvb_si/eit.h>
#include <lib/dvb_si/short_event_descriptor.h>
#include <lib/dvb_si/descriptor_tag.h>
@@ -17,8 +18,8 @@ RESULT eServiceEvent::parseFrom(Event *evt)
case SHORT_EVENT_DESCRIPTOR:
{
const ShortEventDescriptor *sed = (ShortEventDescriptor*)*desc;
- m_event_name = sed->getEventName();
- m_description = sed->getText();
+ m_event_name = convertDVBUTF8(sed->getEventName());
+ m_description = convertDVBUTF8(sed->getText());
break;
}
}