diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-11 15:30:19 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-03-11 15:30:19 +0100 |
commit | d43ab41c025b7b3cb8520aac522729500b97c1ac (patch) | |
tree | 26900782f8cd5656f1e10db32c68c8be924dcb29 | |
parent | 2050f7ac7b720727c8f4e5026789e1f007abfa0b (diff) | |
download | vdr-d43ab41c025b7b3cb8520aac522729500b97c1ac.tar.gz vdr-d43ab41c025b7b3cb8520aac522729500b97c1ac.tar.bz2 |
Deactivated definition of __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS (recording.h) and LEGACY_CRECEIVER (receiver.h)
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | receiver.h | 4 | ||||
-rw-r--r-- | recording.h | 4 |
3 files changed, 9 insertions, 4 deletions
@@ -7022,3 +7022,8 @@ Video Disk Recorder Revision History - Removed the obsolete function cPlugin::RegisterI18n(). - Removed the obsolete typedef tI18nPhrase. - Adapted menu column widths of 'skincurses' to the wider HD OSD sizes. +- Deactivated definition of __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS (recording.h) + and LEGACY_CRECEIVER (receiver.h) to trigger an error for any plugin that still + uses the respective code. You can reactivate these to quickly make your plugin + compile again, but beware that these code parts will be removed in one of the next + versions. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: receiver.h 2.5 2012/03/01 09:50:24 kls Exp $ + * $Id: receiver.h 2.6 2012/03/11 15:25:40 kls Exp $ */ #ifndef __RECEIVER_H @@ -14,7 +14,7 @@ #define MAXRECEIVEPIDS 64 // the maximum number of PIDs per receiver -#define LEGACY_CRECEIVER // Code enclosed with this macro is deprecated and may be removed in a future version +//#define LEGACY_CRECEIVER // Code enclosed with this macro is deprecated and may be removed in a future version class cReceiver { friend class cDevice; diff --git a/recording.h b/recording.h index 61ec2a64..8e6b4b13 100644 --- a/recording.h +++ b/recording.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.h 2.27 2012/02/19 10:44:53 kls Exp $ + * $Id: recording.h 2.28 2012/03/11 15:26:01 kls Exp $ */ #ifndef __RECORDING_H @@ -22,7 +22,7 @@ #define TIMERMACRO_TITLE "TITLE" #define TIMERMACRO_EPISODE "EPISODE" -#define __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS // Code enclosed with this macro is deprecated and may be removed in a future version +//#define __RECORDING_H_DEPRECATED_DIRECT_MEMBER_ACCESS // Code enclosed with this macro is deprecated and may be removed in a future version extern bool VfatFileSystem; extern int InstanceId; |