summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-10-26 09:43:11 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-10-26 09:43:11 +0200
commit2c311093babab83b93dfdd64826b6a2e82462440 (patch)
tree96d0dde0a04ac9e4224691e8d7fb00eb44d5f295 /device.h
parent01ad12975c2a3657440a0b2614d570107998c275 (diff)
downloadvdr-2c311093babab83b93dfdd64826b6a2e82462440.tar.gz
vdr-2c311093babab83b93dfdd64826b6a2e82462440.tar.bz2
Fixed checking the Ca() status of a cDevice
Diffstat (limited to 'device.h')
-rw-r--r--device.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/device.h b/device.h
index 54dc41e0..f4744d71 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.23 2002/10/12 11:15:13 kls Exp $
+ * $Id: device.h 1.24 2002/10/26 09:35:20 kls Exp $
*/
#ifndef __DEVICE_H
@@ -324,7 +324,6 @@ public:
private:
cReceiver *receiver[MAXRECEIVERS];
- int ca;
int CanShift(int Ca, int Priority, int UsedCards = 0) const;
protected:
int Priority(void) const;
@@ -344,8 +343,8 @@ protected:
// false in case of a non recoverable error, otherwise it returns true,
// even if Data is NULL.
public:
- int Ca(void) const { return ca; }
- // Returns the ca of the current receiving session.
+ int Ca(void) const;
+ // Returns the ca of the current receiving session(s).
bool Receiving(void) const;
// Returns true if we are currently receiving.
bool AttachReceiver(cReceiver *Receiver);