diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-07 14:39:38 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-07 14:39:38 +0100 |
commit | 57f58a154654311fc70e478c0b36262da5c414c6 (patch) | |
tree | c41b574ecc9d1449c0d58150f2ef73c09bad0e99 /device.c | |
parent | 680b1b8f8721c0462f04e838dcafd799a10b5574 (diff) | |
download | vdr-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |