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 /timers.h | |
parent | 0b3d9a95fdeb4141fa223a221f7120a44e3c7057 (diff) | |
download | vdr-1314d03411769215c4ce1d62a8a847c9d3e58a7c.tar.gz vdr-1314d03411769215c4ce1d62a8a847c9d3e58a7c.tar.bz2 |
cTimer no longer has its own 'schedule' member
Diffstat (limited to 'timers.h')
-rw-r--r-- | timers.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.h 1.19 2005/05/07 10:36:35 kls Exp $ + * $Id: timers.h 1.20 2005/12/27 14:27:26 kls Exp $ */ #ifndef __TIMERS_H @@ -39,7 +39,6 @@ private: int lifetime; char file[MaxFileName]; char *summary; - const cSchedule *schedule; const cEvent *event; public: cTimer(bool Instant = false, bool Pause = false); @@ -78,7 +77,7 @@ public: bool Expired(void) const; time_t StartTime(void) const; time_t StopTime(void) const; - void SetEvent(const cSchedule *Schedule, const cEvent *Event); + void SetEvent(const cEvent *Event); void SetRecording(bool Recording); void SetPending(bool Pending); void SetInVpsMargin(bool InVpsMargin); |