diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2018-03-21 12:14:55 +0100 |
---|---|---|
committer | Johann Friedrichs <johann.friedrichs@web.de> | 2018-03-21 12:14:55 +0100 |
commit | e8a0e569152c50d6084f252d12854b8fd4e74466 (patch) | |
tree | 5a90ef7ea08ff2096df157ca109c5268cdc04903 /timerstatus.c | |
parent | 9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff) | |
download | vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2 |
unified indentation
Diffstat (limited to 'timerstatus.c')
-rw-r--r-- | timerstatus.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/timerstatus.c b/timerstatus.c index 9c5e1fb..219702f 100644 --- a/timerstatus.c +++ b/timerstatus.c @@ -27,25 +27,25 @@ cTimerStatusMonitor* gl_timerStatusMonitor = NULL; cTimerStatusMonitor::cTimerStatusMonitor() { - conflictCheckAdvised = true; + conflictCheckAdvised = true; } void cTimerStatusMonitor::TimerChange(const cTimer *Timer, eTimerChange Change) { - // vdr-1.5.15 and above will inform us, when there are any timer changes. - // so timer changes (within epgsearch) in previous versions have to be tracked - // at the correspondig places. - conflictCheckAdvised = true; + // vdr-1.5.15 and above will inform us, when there are any timer changes. + // so timer changes (within epgsearch) in previous versions have to be tracked + // at the correspondig places. + conflictCheckAdvised = true; } void cTimerStatusMonitor::SetConflictCheckAdvised(bool ConflictCheckAdvised) { - if (!ConflictCheckAdvised) - conflictCheckAdvised = false; + if (!ConflictCheckAdvised) + conflictCheckAdvised = false; } bool cTimerStatusMonitor::ConflictCheckAdvised() { - return conflictCheckAdvised; + return conflictCheckAdvised; } |