summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-07-28 11:29:32 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-07-28 11:29:32 +0200
commita4246cfd9aa7f3c5a02145815a1e26dcace09327 (patch)
tree98386d9bbd934e14a44e162d8dfacf40a9c388a3 /device.h
parente77d5dfbfba9d05ed647ca19f7295428e7e2202c (diff)
downloadvdr-a4246cfd9aa7f3c5a02145815a1e26dcace09327.tar.gz
vdr-a4246cfd9aa7f3c5a02145815a1e26dcace09327.tar.bz2
Fixed PID handling for cReceiver
Diffstat (limited to 'device.h')
-rw-r--r--device.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/device.h b/device.h
index 6f2a34fd..124dcdc3 100644
--- a/device.h
+++ b/device.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.h 1.3 2002/06/23 11:50:24 kls Exp $
+ * $Id: device.h 1.4 2002/07/28 10:48:12 kls Exp $
*/
#ifndef __DEVICE_H
@@ -89,7 +89,7 @@ private:
public:
cDevice(int n);
virtual ~cDevice();
- bool IsPrimaryDevice(void) { return this == primaryDevice; }
+ bool IsPrimaryDevice(void) const { return this == primaryDevice; }
int CardIndex(void) const { return cardIndex; }
// Returns the card index of this device (0 ... MAXDEVICES - 1).
int ProvidesCa(int Ca);