aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/eit.cpp
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-09-30 19:32:54 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-09-30 19:32:54 +0000
commit8d8294b4b354436adde202604fffb55c181d686c (patch)
treecb56e191bf75fda0d504cfc66e8e1cf4d8575e4e /lib/dvb/eit.cpp
parentfc233e3a96e68514165781859afc94a2bb33e9e9 (diff)
downloadenigma2-8d8294b4b354436adde202604fffb55c181d686c.tar.gz
enigma2-8d8294b4b354436adde202604fffb55c181d686c.zip
use libdvbsi++ from tuxbox-cvs,
please add http://ghost.dream-multimedia-tv.de/libdvbsi++.bb to your bitbake/openembedded/packages/tuxbox directory and exectute "bitbake -b ../openembedded/packages/tuxbox/libdvbsi++.bb" then install the libdvbsi++...ipk
Diffstat (limited to 'lib/dvb/eit.cpp')
-rw-r--r--lib/dvb/eit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/eit.cpp b/lib/dvb/eit.cpp
index 2462d333..b78b2279 100644
--- a/lib/dvb/eit.cpp
+++ b/lib/dvb/eit.cpp
@@ -7,11 +7,11 @@ void eDVBServiceEITHandler::EITready(int error)
{
if (!error)
{
- ePtr<eTable<EventInformationTable> > ptr;
+ ePtr<eTable<EventInformationSection> > ptr;
if (!m_EIT.getCurrent(ptr))
{
int a = 0;
- for (EventInformationTableConstIterator i = ptr->getSections().begin();
+ for (std::vector<EventInformationSection*>::const_iterator i = ptr->getSections().begin();
i != ptr->getSections().end(); ++i)
{
for (EventConstIterator ev = (*i)->getEvents()->begin(); ev != (*i)->getEvents()->end(); ++ev)