summaryrefslogtreecommitdiff
path: root/device.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 /device.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 'device.c')
-rw-r--r--device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/device.c b/device.c
index 0452edc1..8c527aac 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c 2.56 2012/03/06 12:32:38 kls Exp $
+ * $Id: device.c 2.57 2012/03/07 14:17:49 kls Exp $
*/
#include "device.h"
@@ -723,7 +723,7 @@ bool cDevice::SwitchChannel(int Direction)
eSetChannelResult cDevice::SetChannel(const cChannel *Channel, bool LiveView)
{
- cStatus::MsgChannelSwitch(this, 0);
+ cStatus::MsgChannelSwitch(this, 0, LiveView);
if (LiveView) {
StopReplay();
@@ -793,7 +793,7 @@ eSetChannelResult cDevice::SetChannel(const cChannel *Channel, bool LiveView)
EnsureAudioTrack(true);
EnsureSubtitleTrack();
}
- cStatus::MsgChannelSwitch(this, Channel->Number()); // only report status if channel switch successfull
+ cStatus::MsgChannelSwitch(this, Channel->Number(), LiveView); // only report status if channel switch successfull
}
return Result;