diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-16 13:06:16 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-02-16 13:06:16 +0100 |
commit | bb47d52f95f054db9e90f440929ea5a840456c87 (patch) | |
tree | a440216e6c394907041be51249ad5382769f0b69 /dvbdevice.h | |
parent | cd2ed6cfe750186948a090c47dba42fdaeea8a6a (diff) | |
download | vdr-bb47d52f95f054db9e90f440929ea5a840456c87.tar.gz vdr-bb47d52f95f054db9e90f440929ea5a840456c87.tar.bz2 |
Added missing 'const' to cDevice::HasProgramme() and cDevice::HasLock()
Diffstat (limited to 'dvbdevice.h')
-rw-r--r-- | dvbdevice.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.h b/dvbdevice.h index 6dca3859..d3218d2b 100644 --- a/dvbdevice.h +++ b/dvbdevice.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: dvbdevice.h 2.26 2012/04/04 09:48:00 kls Exp $ + * $Id: dvbdevice.h 2.27 2013/02/16 12:48:11 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -192,7 +192,7 @@ public: protected: virtual bool SetChannelDevice(const cChannel *Channel, bool LiveView); public: - virtual bool HasLock(int TimeoutMs = 0); + virtual bool HasLock(int TimeoutMs = 0) const; // PID handle facilities |