From 655b2297b98095b5fb05fd755a57813beb1ce335 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 26 Feb 2006 10:52:51 +0100 Subject: There is now a log message "timer ... set to event ..." when defining a timer from the EPG menu --- HISTORY | 2 ++ timers.c | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/HISTORY b/HISTORY index ea187432..1cf05622 100644 --- a/HISTORY +++ b/HISTORY @@ -4402,3 +4402,5 @@ Video Disk Recorder Revision History timer now has its own timestamp to control whether its schedule has changed since the last time its event has been set. - Fixed setting events to timers in case a non-VPS event has expired. +- There is now a log message "timer ... set to event ..." when defining a timer + from the EPG menu. diff --git a/timers.c b/timers.c index 9590d7d2..63eb3422 100644 --- a/timers.c +++ b/timers.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: timers.c 1.49 2006/02/26 10:17:38 kls Exp $ + * $Id: timers.c 1.50 2006/02/26 10:50:47 kls Exp $ */ #include "timers.h" @@ -51,7 +51,7 @@ cTimer::cTimer(bool Instant, bool Pause, cChannel *Channel) cTimer::cTimer(const cEvent *Event) { startTime = stopTime = 0; - lastSetEvent = event->Schedule() ? event->Schedule()->Modified() : 0; + lastSetEvent = 0; recording = pending = inVpsMargin = false; flags = tfActive; if (Event->Vps() && Setup.UseVps) @@ -79,7 +79,7 @@ cTimer::cTimer(const cEvent *Event) if (!isempty(Title)) strn0cpy(file, Event->Title(), sizeof(file)); aux = NULL; - event = Event; + event = NULL; // let SetEvent() be called to get a log message } cTimer::~cTimer() -- cgit v1.2.3