diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 18:41:07 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 18:41:07 +0100 |
commit | bf057bf359c8650bc7023d43bf47f9237992fb15 (patch) | |
tree | 852bf4d27024aad0731469372fce01916e47f249 /conflictcheck.c | |
parent | 1ca3263b1febbef86071eaaa4e8eda0bbac578fa (diff) | |
download | vdr-plugin-epgsearch-bf057bf359c8650bc7023d43bf47f9237992fb15.tar.gz vdr-plugin-epgsearch-bf057bf359c8650bc7023d43bf47f9237992fb15.tar.bz2 |
track all timer changes within epgsearch and expose this information via service
interface, 0.9.24.beta20
Diffstat (limited to 'conflictcheck.c')
-rw-r--r-- | conflictcheck.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/conflictcheck.c b/conflictcheck.c index d783f8a..cf12b41 100644 --- a/conflictcheck.c +++ b/conflictcheck.c @@ -28,6 +28,7 @@ The project's page is at http://winni.vdr-developer.org/epgsearch #include <libsi/si.h> #include "conflictcheck_thread.h" #include "recstatus.h" +#include "timerstatus.h" #define FULLMATCH 1000 #define EPGLIMITBEFORE (1 * 3600) // Time in seconds before a timer's start time and @@ -215,6 +216,7 @@ void cConflictCheck::Check() LogFile.Log(2,"timer '%s' (%s, channel %s) failed", (*it)->timer->File(), DAYDATETIME((*it)->timer->StartTime()), CHANNELNAME((*it)->timer->Channel())); } } + if (gl_timerStatusMonitor) gl_timerStatusMonitor->SetConflictCheckAdvised(false); } cList<cConflictCheckTimerObj>* cConflictCheck::CreateCurrentTimerList() |