summaryrefslogtreecommitdiff
path: root/eitscan.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2004-01-17 15:38:11 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2004-01-17 15:38:11 +0100
commite4960d169e8f1184e571ab60df39e1ab2e584eb6 (patch)
tree1b1db050aef6f0da1cc4c91a0a678e46a9e16a95 /eitscan.h
parent004b82d3d44a2fdf455ec5f6f8f95dd7bc3ad659 (diff)
downloadvdr-e4960d169e8f1184e571ab60df39e1ab2e584eb6.tar.gz
vdr-e4960d169e8f1184e571ab60df39e1ab2e584eb6.tar.bz2
The "Red" button in the "Setup/EPG" menu can now be used to force an EPG scan on a single DVB card system
Diffstat (limited to 'eitscan.h')
-rw-r--r--eitscan.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/eitscan.h b/eitscan.h
index 8685898f..c5116cb9 100644
--- a/eitscan.h
+++ b/eitscan.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: eitscan.h 1.7 2004/01/17 13:13:47 kls Exp $
+ * $Id: eitscan.h 1.8 2004/01/17 15:36:24 kls Exp $
*/
#ifndef __EITSCAN_H
@@ -29,9 +29,10 @@ private:
public:
cEITScanner(void);
~cEITScanner();
- bool Active(void) { return currentChannel; }
+ 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);
void Process(void);
};