diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-22 13:21:18 +0100 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-03-22 13:21:18 +0100 |
commit | f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5 (patch) | |
tree | 984cb2deae344c86466e08c0146308ba7b11b9db /timerconflict.c | |
parent | a8ca6f19da6c0c3834729416a0c9eacc004ef200 (diff) | |
download | vdr-plugin-tvguide-f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5.tar.gz vdr-plugin-tvguide-f7e5ac3208a40ceed8bc3bd05fe81bffc774bbf5.tar.bz2 |
Some cosmetic changes
Diffstat (limited to 'timerconflict.c')
-rw-r--r-- | timerconflict.c | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/timerconflict.c b/timerconflict.c index 6f34842..e57d6ff 100644 --- a/timerconflict.c +++ b/timerconflict.c @@ -71,7 +71,7 @@ void cTVGuideTimerConflicts::AddConflict(std::string epgSearchConflictLine) { splitstring s3(flds2[2].c_str()); std::vector<std::string> flds3 = s3.split('#'); std::vector<int> timerIDs; - for (int k = 0; k < flds3.size(); k++) { + for (int k = 0; k < (int)flds3.size(); k++) { timerIDs.push_back(atoi(flds3[k].c_str()) - 1); } conflict->timerIDs = timerIDs; @@ -80,18 +80,17 @@ void cTVGuideTimerConflicts::AddConflict(std::string epgSearchConflictLine) { void cTVGuideTimerConflicts::CalculateConflicts(void) { numConflicts = conflicts.size(); -// time_t startTime = 0; -// time_t endTime = 0; for (int i=0; i < numConflicts; i++) { cTimeInterval *unionSet = NULL; int numTimers = conflicts[i]->timerIDs.size(); - for (int j=0; j < numTimers; j++) { #if VDRVERSNUM >= 20301 - LOCK_TIMERS_READ; - const cTimer *timer = Timers->Get(conflicts[i]->timerIDs[j]); + LOCK_TIMERS_READ; + const cTimers* timers = Timers; #else - const cTimer *timer = Timers.Get(conflicts[i]->timerIDs[j]); + const cTimers* timers = &Timers; #endif + for (int j=0; j < numTimers; j++) { + const cTimer *timer = timers->Get(conflicts[i]->timerIDs[j]); if (timer) { if (!unionSet) { unionSet = new cTimeInterval(timer->StartTime(), timer->StopTime()); @@ -110,12 +109,7 @@ void cTVGuideTimerConflicts::CalculateConflicts(void) { cTimeInterval *intersect = NULL; for (int j=0; j < numTimers; j++) { -#if VDRVERSNUM >= 20301 - LOCK_TIMERS_READ; - const cTimer *timer = Timers->Get(conflicts[i]->timerIDs[j]); -#else - const cTimer *timer = Timers.Get(conflicts[i]->timerIDs[j]); -#endif + const cTimer *timer = timers->Get(conflicts[i]->timerIDs[j]); if (timer) { if (!intersect) { intersect = new cTimeInterval(timer->StartTime(), timer->StopTime()); |