summaryrefslogtreecommitdiff
path: root/timers.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-12-08 11:05:39 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-12-08 11:05:39 +0100
commit83fe591f3254a8010e107739256ef0df780b219c (patch)
tree87ee41dbc77184af071f450ea29969579a53efb5 /timers.h
parentbc0b67e6302a114e1efd2701aafa6ecd9282cc69 (diff)
downloadvdr-83fe591f3254a8010e107739256ef0df780b219c.tar.gz
vdr-83fe591f3254a8010e107739256ef0df780b219c.tar.bz2
The new functions SetItemEvent(), SetItemTimer(), SetItemChannel() and SetItemRecording() of the cSkinDisplayMenu class can be reimplemented by skin plugins to display these items in a more elaborate way than just a simple line of text1.7.33
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 e77b3946..cde8b3bd 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 2.4 2012/06/02 12:10:00 kls Exp $
+ * $Id: timers.h 2.5 2012/12/07 13:13:40 kls Exp $
*/
#ifndef __TIMERS_H
@@ -77,7 +77,7 @@ public:
static time_t SetTime(time_t t, int SecondsFromMidnight);
void SetFile(const char *File);
bool Matches(time_t t = 0, bool Directly = false, int Margin = 0) const;
- int Matches(const cEvent *Event, int *Overlap = NULL) const;
+ eTimerMatch Matches(const cEvent *Event, int *Overlap = NULL) const;
bool Expired(void) const;
time_t StartTime(void) const;
time_t StopTime(void) const;
@@ -116,7 +116,7 @@ public:
cTimers(void);
cTimer *GetTimer(cTimer *Timer);
cTimer *GetMatch(time_t t);
- cTimer *GetMatch(const cEvent *Event, int *Match = NULL);
+ cTimer *GetMatch(const cEvent *Event, eTimerMatch *Match = NULL);
cTimer *GetNextActiveTimer(void);
int BeingEdited(void) { return beingEdited; }
void IncBeingEdited(void) { beingEdited++; }