summaryrefslogtreecommitdiff
path: root/status.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-03-07 14:39:38 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-03-07 14:39:38 +0100
commit57f58a154654311fc70e478c0b36262da5c414c6 (patch)
treec41b574ecc9d1449c0d58150f2ef73c09bad0e99 /status.c
parent680b1b8f8721c0462f04e838dcafd799a10b5574 (diff)
downloadvdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.gz
vdr-57f58a154654311fc70e478c0b36262da5c414c6.tar.bz2
Removed the obsolete function cEITScanner::UsesDevice(); added new parameter LiveView to cStatus::ChannelSwitch()
Diffstat (limited to 'status.c')
-rw-r--r--status.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/status.c b/status.c
index 1d7a8d42..b0a6aba0 100644
--- a/status.c
+++ b/status.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: status.c 1.10 2008/02/16 14:46:31 kls Exp $
+ * $Id: status.c 2.1 2012/03/07 14:17:24 kls Exp $
*/
#include "status.h"
@@ -29,10 +29,10 @@ void cStatus::MsgTimerChange(const cTimer *Timer, eTimerChange Change)
sm->TimerChange(Timer, Change);
}
-void cStatus::MsgChannelSwitch(const cDevice *Device, int ChannelNumber)
+void cStatus::MsgChannelSwitch(const cDevice *Device, int ChannelNumber, bool LiveView)
{
for (cStatus *sm = statusMonitors.First(); sm; sm = statusMonitors.Next(sm))
- sm->ChannelSwitch(Device, ChannelNumber);
+ sm->ChannelSwitch(Device, ChannelNumber, LiveView);
}
void cStatus::MsgRecording(const cDevice *Device, const char *Name, const char *FileName, bool On)