Removed unused declaration of cDvbTuner::SetFrontendType()

This commit is contained in:
Klaus Schmidinger 2021-06-09 09:12:25 +02:00
parent 0f6265a97f
commit 9686a9b474
3 changed files with 4 additions and 3 deletions

View File

@ -3660,6 +3660,7 @@ Helmut Binder <cco@aon.at>
for preventing switching devices for pattern timers for preventing switching devices for pattern timers
for pointing out that cChannel::Transponder(void) is called very often for pointing out that cChannel::Transponder(void) is called very often
for fixing flushing old data from the section handler for fixing flushing old data from the section handler
for removing unused declaration of cDvbTuner::SetFrontendType()
Ulrich Eckhardt <uli@uli-eckhardt.de> Ulrich Eckhardt <uli@uli-eckhardt.de>
for reporting a problem with shutdown after user inactivity in case a plugin is for reporting a problem with shutdown after user inactivity in case a plugin is

View File

@ -9706,7 +9706,7 @@ Video Disk Recorder Revision History
order to restore this functionality. However, it is recommended to use the function order to restore this functionality. However, it is recommended to use the function
with the TimerActive parameter instead. with the TimerActive parameter instead.
2021-06-08: 2021-06-09:
- cRecordingInfo::Errors() now returns -1 for old recordings; added a missing 'const' - cRecordingInfo::Errors() now returns -1 for old recordings; added a missing 'const'
(suggested by Christoph Haubrich). (suggested by Christoph Haubrich).
@ -9717,3 +9717,4 @@ Video Disk Recorder Revision History
- No longer permanently looping through PMT PIDs, which caused problems with some - No longer permanently looping through PMT PIDs, which caused problems with some
SatIP receivers (reported by André Weidemann; with help from Helmut Binder). SatIP receivers (reported by André Weidemann; with help from Helmut Binder).
- Fixed flushing old data from the section handler (thanks to Helmut Binder). - Fixed flushing old data from the section handler (thanks to Helmut Binder).
- Removed unused declaration of cDvbTuner::SetFrontendType() (thanks to Helmut Binder).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * how to reach the author.
* *
* $Id: dvbdevice.c 4.29 2020/12/05 15:48:40 kls Exp $ * $Id: dvbdevice.c 5.1 2021/06/09 09:12:25 kls Exp $
*/ */
#include "dvbdevice.h" #include "dvbdevice.h"
@ -558,7 +558,6 @@ private:
cCondVar newSet; cCondVar newSet;
cDvbTuner *bondedTuner; cDvbTuner *bondedTuner;
bool bondedMaster; bool bondedMaster;
bool SetFrontendType(const cChannel *Channel);
cString GetBondingParams(const cChannel *Channel = NULL) const; cString GetBondingParams(const cChannel *Channel = NULL) const;
cDvbTuner *GetBondedMaster(void); cDvbTuner *GetBondedMaster(void);
bool IsBondedMaster(void) const { return !bondedTuner || bondedMaster; } bool IsBondedMaster(void) const { return !bondedTuner || bondedMaster; }