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.h | |
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.h')
-rw-r--r-- | eitscan.h | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: eitscan.h 1.9 2005/09/04 10:51:35 kls Exp $ + * $Id: eitscan.h 2.1 2012/03/07 14:16:57 kls Exp $ */ #ifndef __EITSCAN_H @@ -24,7 +24,6 @@ private: ScanTimeout = 20 }; time_t lastScan, lastActivity; - cDevice *currentDevice; int currentChannel; cScanList *scanList; cTransponderList *transponderList; @@ -32,7 +31,6 @@ public: cEITScanner(void); ~cEITScanner(); bool Active(void) { return currentChannel || lastActivity == 0; } - bool UsesDevice(const cDevice *Device) { return currentDevice == Device; } void AddTransponder(cChannel *Channel); void ForceScan(void); void Activity(void); |