1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

There is now a log message "timer ... set to event ..." when defining a timer from the EPG menu

This commit is contained in:
Klaus Schmidinger 2006-02-26 10:52:51 +01:00
parent 9488c94133
commit 655b2297b9
2 changed files with 5 additions and 3 deletions

View File

@ -4402,3 +4402,5 @@ Video Disk Recorder Revision History
timer now has its own timestamp to control whether its schedule has changed timer now has its own timestamp to control whether its schedule has changed
since the last time its event has been set. since the last time its event has been set.
- Fixed setting events to timers in case a non-VPS event has expired. - 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.

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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" #include "timers.h"
@ -51,7 +51,7 @@ cTimer::cTimer(bool Instant, bool Pause, cChannel *Channel)
cTimer::cTimer(const cEvent *Event) cTimer::cTimer(const cEvent *Event)
{ {
startTime = stopTime = 0; startTime = stopTime = 0;
lastSetEvent = event->Schedule() ? event->Schedule()->Modified() : 0; lastSetEvent = 0;
recording = pending = inVpsMargin = false; recording = pending = inVpsMargin = false;
flags = tfActive; flags = tfActive;
if (Event->Vps() && Setup.UseVps) if (Event->Vps() && Setup.UseVps)
@ -79,7 +79,7 @@ cTimer::cTimer(const cEvent *Event)
if (!isempty(Title)) if (!isempty(Title))
strn0cpy(file, Event->Title(), sizeof(file)); strn0cpy(file, Event->Title(), sizeof(file));
aux = NULL; aux = NULL;
event = Event; event = NULL; // let SetEvent() be called to get a log message
} }
cTimer::~cTimer() cTimer::~cTimer()