summaryrefslogtreecommitdiff
path: root/timers.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-02-26 10:52:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2006-02-26 10:52:51 +0100
commit655b2297b98095b5fb05fd755a57813beb1ce335 (patch)
treed33e8e59901fe151d2a25f48d4899de11a48aced /timers.c
parent9488c94133526fc9b0945638cdc74c6fffabbc61 (diff)
downloadvdr-655b2297b98095b5fb05fd755a57813beb1ce335.tar.gz
vdr-655b2297b98095b5fb05fd755a57813beb1ce335.tar.bz2
There is now a log message "timer ... set to event ..." when defining a timer from the EPG menu
Diffstat (limited to 'timers.c')
-rw-r--r--timers.c6
1 files changed, 3 insertions, 3 deletions
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()