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 /eitscan.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 'eitscan.c')
-rw-r--r-- | eitscan.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.c 2.5 2011/10/16 14:10:00 kls Exp $ + * $Id: eitscan.c 2.6 2012/03/07 14:16:57 kls Exp $ */ #include "eitscan.h" @@ -92,7 +92,6 @@ cEITScanner EITScanner; cEITScanner::cEITScanner(void) { lastScan = lastActivity = time(NULL); - currentDevice = NULL; currentChannel = 0; scanList = NULL; transponderList = NULL; @@ -159,10 +158,8 @@ void cEITScanner::Process(void) Skins.Message(mtInfo, tr("Starting EPG scan")); } } - currentDevice = Device;//XXX see also dvbdevice.c!!! //dsyslog("EIT scan: device %d source %-8s tp %5d", Device->DeviceNumber() + 1, *cSource::ToString(Channel->Source()), Channel->Transponder()); Device->SwitchChannel(Channel, false); - currentDevice = NULL; scanList->Del(ScanData); AnyDeviceSwitched = true; break; |