diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2019-03-10 12:10:01 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2019-03-10 12:10:01 +0100 |
commit | 18bb52554f8dbaa72cfb6ca72ebd64c04b738950 (patch) | |
tree | f75f38bff41ee2f0708761c5582ed6ac2795032a /dvbdevice.h | |
parent | b9162ad7bddc2484775711ddcbb4b2a602bfa8b3 (diff) | |
download | vdr-18bb52554f8dbaa72cfb6ca72ebd64c04b738950.tar.gz vdr-18bb52554f8dbaa72cfb6ca72ebd64c04b738950.tar.bz2 |
Fixed accessing the actual frontend on multi frontend devices
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 530e8ba7..4e8f82ee 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 4.5 2018/10/20 11:39:11 kls Exp $ + * $Id: dvbdevice.h 4.6 2019/03/10 12:01:15 kls Exp $ */ #ifndef __DVBDEVICE_H @@ -189,7 +189,7 @@ public: cDvbDevice(int Adapter, int Frontend); virtual ~cDvbDevice(); int Adapter(void) const { return adapter; } - int Frontend(void) const { return frontend; } + int Frontend(void) const; virtual cString DeviceType(void) const; virtual cString DeviceName(void) const; static bool BondDevices(const char *Bondings); |