summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-03-31 21:24:10 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-03-31 21:24:10 +0200
commit2331fb9cc1b7abb6a66ca044ff0497dade274bea (patch)
tree458aa65a5ca06cd90ef86aae04965f212220e805 /menu.c
parent94849cfde892c015615ef6745400cc21e2cd0c79 (diff)
downloadvdr-2331fb9cc1b7abb6a66ca044ff0497dade274bea.tar.gz
vdr-2331fb9cc1b7abb6a66ca044ff0497dade274bea.tar.bz2
Fixed skipping the next hit of a repeating timer
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index 5ce4a1fc..03dbcea3 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 1.179 2002/03/31 15:20:47 kls Exp $
+ * $Id: menu.c 1.180 2002/03/31 21:17:42 kls Exp $
*/
#include "menu.h"
@@ -1219,7 +1219,7 @@ eOSState cMenuTimers::OnOff(void)
timer->active = false;
}
else if (timer->active)
- timer->SkipToday();
+ timer->Skip();
else
timer->active = true;
timer->Matches(); // refresh start and end time
@@ -1856,7 +1856,7 @@ eOSState cMenuRecordings::Del(void)
if (Interface->Confirm(tr("Timer still recording - really delete?"))) {
cTimer *timer = rc->Timer();
if (timer) {
- timer->SkipToday();
+ timer->Skip();
cRecordControls::Process(time(NULL));
Timers.Save();
}