diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 10:09:06 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-05-28 10:09:06 +0200 |
commit | b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b (patch) | |
tree | 1d14c80c5db191a3d57b3ec3c7f3cf9ba32f13c2 /eit.c | |
parent | 7114258ebd27e302eba4be88b546662c163396f4 (diff) | |
download | vdr-b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b.tar.gz vdr-b4cbb84489020d0fa3e45fbff60cf1ce43ea6a1b.tar.bz2 |
cEvent no longer stores the channelID directly, but rather has a pointer to the schedule it is in
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8,7 +8,7 @@ * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * Adapted to 'libsi' for VDR 1.3.0 by Marcel Wiesweg <marcel.wiesweg@gmx.de>. * - * $Id: eit.c 1.105 2005/05/26 10:25:41 kls Exp $ + * $Id: eit.c 1.106 2005/05/28 10:07:12 kls Exp $ */ #include "eit.h" @@ -56,7 +56,7 @@ cEIT::cEIT(cSchedules *Schedules, int Source, u_char Tid, const u_char *Data) if (!pEvent) { // If we don't have that event yet, we create a new one. // Otherwise we copy the information into the existing event anyway, because the data might have changed. - pEvent = pSchedule->AddEvent(new cEvent(channelID, SiEitEvent.getEventId())); + pEvent = pSchedule->AddEvent(new cEvent(pSchedule, SiEitEvent.getEventId())); if (!pEvent) continue; } |