summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-29 11:39:29 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-29 11:39:29 +0200
commit984c51ef917611c4c0ce0850339a3259984e14bc (patch)
tree2bde85d03cd2263bf9d52a9e07599b5537c19784 /menu.c
parent33079db2de7a7c68792ebfa1dc5b0c1b831f77a1 (diff)
downloadvdr-984c51ef917611c4c0ce0850339a3259984e14bc.tar.gz
vdr-984c51ef917611c4c0ce0850339a3259984e14bc.tar.bz2
Single event timers are now deleted if the recording they are doing is deleted before the timer ends
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/menu.c b/menu.c
index 22b78718..85b94bed 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.250 2003/05/29 09:35:28 kls Exp $
+ * $Id: menu.c 1.251 2003/05/29 11:35:52 kls Exp $
*/
#include "menu.h"
@@ -1862,6 +1862,11 @@ eOSState cMenuRecordings::Delete(void)
if (timer) {
timer->Skip();
cRecordControls::Process(time(NULL));
+ if (timer->IsSingleEvent()) {
+ int Index = timer->Index();
+ Timers.Del(timer);
+ isyslog("timer %d deleted", Index + 1);
+ }
Timers.Save();
}
}