summaryrefslogtreecommitdiff
path: root/timerstatus.c
diff options
context:
space:
mode:
authorJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
committerJohann Friedrichs <johann.friedrichs@web.de>2018-03-21 12:14:55 +0100
commite8a0e569152c50d6084f252d12854b8fd4e74466 (patch)
tree5a90ef7ea08ff2096df157ca109c5268cdc04903 /timerstatus.c
parent9c7d95ff8d6ba965cb23147507a859b1fd0491d6 (diff)
downloadvdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.gz
vdr-plugin-epgsearch-e8a0e569152c50d6084f252d12854b8fd4e74466.tar.bz2
unified indentation
Diffstat (limited to 'timerstatus.c')
-rw-r--r--timerstatus.c16
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;
}