mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The function SetCurrentChannel(const cChannel *Channel) is now deprecated
This commit is contained in:
parent
146f2cbd4d
commit
1172937e8a
3
HISTORY
3
HISTORY
@ -8834,3 +8834,6 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed an overflow of PIDs in a receiver (thanks to Robert Hannebauer).
|
- Fixed an overflow of PIDs in a receiver (thanks to Robert Hannebauer).
|
||||||
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
||||||
- Fixed initializing device specific parameters in cDvbTransponderParameters.
|
- Fixed initializing device specific parameters in cDvbTransponderParameters.
|
||||||
|
- The function SetCurrentChannel(const cChannel *Channel) is now deprecated and
|
||||||
|
may be removed in a future version. Use SetCurrentChannel(int ChannelNumber)
|
||||||
|
instead.
|
||||||
|
6
device.h
6
device.h
@ -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: device.h 4.1 2015/04/19 12:12:43 kls Exp $
|
* $Id: device.h 4.2 2016/12/06 14:12:39 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __DEVICE_H
|
#ifndef __DEVICE_H
|
||||||
@ -322,7 +322,11 @@ protected:
|
|||||||
public:
|
public:
|
||||||
static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; }
|
static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; }
|
||||||
///< Returns the number of the current channel on the primary device.
|
///< Returns the number of the current channel on the primary device.
|
||||||
|
#define DEPRECATED_SETCURRENTCHANNEL
|
||||||
|
#ifdef DEPRECATED_SETCURRENTCHANNEL
|
||||||
static void SetCurrentChannel(const cChannel *Channel) { currentChannel = Channel ? Channel->Number() : 0; }
|
static void SetCurrentChannel(const cChannel *Channel) { currentChannel = Channel ? Channel->Number() : 0; }
|
||||||
|
#endif
|
||||||
|
static void SetCurrentChannel(int ChannelNumber) { currentChannel = ChannelNumber; }
|
||||||
///< Sets the number of the current channel on the primary device, without
|
///< Sets the number of the current channel on the primary device, without
|
||||||
///< actually switching to it. This can be used to correct the current
|
///< actually switching to it. This can be used to correct the current
|
||||||
///< channel number while replaying.
|
///< channel number while replaying.
|
||||||
|
Loading…
Reference in New Issue
Block a user