summaryrefslogtreecommitdiff
path: root/timers.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-25 12:09:22 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-25 12:09:22 +0100
commitbc2e59909fed6772360effd9d11ccae65af26a02 (patch)
tree84ccf0ff770152e4b15b4e0051c567537be801b8 /timers.h
parent6b747233362eccf5e6f9609e852f7f1cb42c49b1 (diff)
downloadvdr-bc2e59909fed6772360effd9d11ccae65af26a02.tar.gz
vdr-bc2e59909fed6772360effd9d11ccae65af26a02.tar.bz2
The 'summary' field of a timer definition has been renamed to 'aux'
Diffstat (limited to 'timers.h')
-rw-r--r--timers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/timers.h b/timers.h
index 73b951d1..7da77014 100644
--- a/timers.h
+++ b/timers.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: timers.h 1.24 2006/01/15 13:29:44 kls Exp $
+ * $Id: timers.h 1.25 2006/02/25 10:42:10 kls Exp $
*/
#ifndef __TIMERS_H
@@ -38,7 +38,7 @@ private:
int priority;
int lifetime;
char file[MaxFileName];
- char *summary;
+ char *aux;
const cEvent *event;
public:
cTimer(bool Instant = false, bool Pause = false, cChannel *Channel = NULL);
@@ -59,7 +59,7 @@ public:
int Lifetime(void) const { return lifetime; }
const char *File(void) const { return file; }
time_t FirstDay(void) const { return weekdays ? day : 0; }
- const char *Summary(void) const { return summary; }
+ const char *Aux(void) const { return aux; }
cString ToText(bool UseChannelID = false);
cString ToDescr(void) const;
const cEvent *Event(void) const { return event; }