summaryrefslogtreecommitdiff
path: root/timers.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2021-04-04 13:38:13 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2021-04-04 13:38:13 +0200
commit8f1419fff59acea5c57e861819111cfc38dd193d (patch)
tree99eeb5509c2a162c4b943fd863ec4201b971d52b /timers.h
parentb80c22e9c4097220cf4a1e2cce82daeca1ba4a36 (diff)
downloadvdr-8f1419fff59acea5c57e861819111cfc38dd193d.tar.gz
vdr-8f1419fff59acea5c57e861819111cfc38dd193d.tar.bz2
The margins for timer recordings are now always limited to the duration of the previous and next event
Diffstat (limited to 'timers.h')
-rw-r--r--timers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/timers.h b/timers.h
index 72e99531..ae3ab2f6 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 5.2 2021/01/14 10:29:05 kls Exp $
+ * $Id: timers.h 5.3 2021/04/04 13:38:13 kls Exp $
*/
#ifndef __TIMERS_H
@@ -55,6 +55,7 @@ public:
cTimer(const cTimer &Timer);
virtual ~cTimer();
cTimer& operator= (const cTimer &Timer);
+ void CalcMargins(int &MarginStart, int &MarginStop, const cEvent *Event);
virtual int Compare(const cListObject &ListObject) const;
int Id(void) const { return id; }
bool Recording(void) const { return HasFlags(tfRecording); }