summaryrefslogtreecommitdiff
path: root/timerstatus.c
diff options
context:
space:
mode:
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;
}