diff options
Diffstat (limited to 'eitscan.h')
-rw-r--r-- | eitscan.h | 5 |
1 files changed, 3 insertions, 2 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.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); }; |