diff options
author | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-16 21:01:06 +0200 |
---|---|---|
committer | Dimitar Petrovski <dimeptr@gmail.com> | 2012-10-16 21:01:06 +0200 |
commit | cee549473dacfa3e82cb13bd9bbe1c8f0e8c1a6a (patch) | |
tree | 58e52874ac32273aa1a6a99b83bdc9c09ebb076d /eit2.c | |
parent | 7de1003a14fb4b41920896c550db4e58f53aea8d (diff) | |
download | vdr-plugin-eepg-cee549473dacfa3e82cb13bd9bbe1c8f0e8c1a6a.tar.gz vdr-plugin-eepg-cee549473dacfa3e82cb13bd9bbe1c8f0e8c1a6a.tar.bz2 |
fix some includes
Diffstat (limited to 'eit2.c')
-rw-r--r-- | eit2.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -10,6 +10,7 @@ #include <vdr/config.h> #include "log.h" #include "util.h" +#include "dish.h" using namespace std; using namespace util; @@ -110,8 +111,8 @@ namespace SI cComponents *Components = NULL; - - for (SI::Loop::Iterator it2; (d = SiEitEvent->eventDescriptors.getNext(it2)); ) + DescriptorLoop dl = SiEitEvent->eventDescriptors; + for (SI::Loop::Iterator it2; (d = dl.getNext(it2)); ) { if (ExternalData && d->getDescriptorTag() != SI::ComponentDescriptorTag) { |