diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-27 14:39:14 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-12-27 14:39:14 +0100 |
commit | 1314d03411769215c4ce1d62a8a847c9d3e58a7c (patch) | |
tree | 7ec47de4083ee266c8e5e41976fcebb7d93039fe /epg.h | |
parent | 0b3d9a95fdeb4141fa223a221f7120a44e3c7057 (diff) | |
download | vdr-1314d03411769215c4ce1d62a8a847c9d3e58a7c.tar.gz vdr-1314d03411769215c4ce1d62a8a847c9d3e58a7c.tar.bz2 |
cTimer no longer has its own 'schedule' member
Diffstat (limited to 'epg.h')
-rw-r--r-- | epg.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -7,7 +7,7 @@ * Original version (as used in VDR before 1.3.0) written by * Robert Schneider <Robert.Schneider@web.de> and Rolf Hakenes <hakenes@hippomi.de>. * - * $Id: epg.h 1.27 2005/12/26 11:59:44 kls Exp $ + * $Id: epg.h 1.28 2005/12/27 14:31:24 kls Exp $ */ #ifndef __EPG_H @@ -67,6 +67,7 @@ public: ~cEvent(); virtual int Compare(const cListObject &ListObject) const; tChannelID ChannelID(void) const; + const cSchedule *Schedule(void) const { return schedule; } u_int16_t EventID(void) const { return eventID; } uchar TableID(void) const { return tableID; } uchar Version(void) const { return version; } |