summaryrefslogtreecommitdiff
path: root/device.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2016-12-06 14:17:39 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2016-12-06 14:17:39 +0100
commit1172937e8a3820d93a790510e36cd6eb5671ebb9 (patch)
tree57a9eee2889dd7ff3f463194614b71ed882a9cf6 /device.h
parent146f2cbd4d1c8d9a0238662ab9bb4e6a8848dba7 (diff)
downloadvdr-1172937e8a3820d93a790510e36cd6eb5671ebb9.tar.gz
vdr-1172937e8a3820d93a790510e36cd6eb5671ebb9.tar.bz2
The function SetCurrentChannel(const cChannel *Channel) is now deprecated
Diffstat (limited to 'device.h')
-rw-r--r--device.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/device.h b/device.h
index 31ee3038..9475d23a 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 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
@@ -322,7 +322,11 @@ protected:
public:
static int CurrentChannel(void) { return primaryDevice ? currentChannel : 0; }
///< 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; }
+#endif
+ static void SetCurrentChannel(int ChannelNumber) { currentChannel = ChannelNumber; }
///< Sets the number of the current channel on the primary device, without
///< actually switching to it. This can be used to correct the current
///< channel number while replaying.