RAD Studio 10.1 Berlin
Posted: Mon Nov 07, 2016 8:23 am
Hi
New computer - I have installed TeeChartVCLFMXSOURCE-2016.19 into RAD Studio 10.1 Berlin and everything has been working OK all day.
I changed a form which does not have any references to TeeChart and then re compiled and was surprised to get the following error
TeCanvas opened up at the appropriate line (5672) but I noticed other errors on line 148 which indicated that the unit $IFDEF D16 TRectF=System.Types.TRectF; was being seen rather than the ELSE
Assistance gratefully appreciated to resolve this
Many Thanks
Philip L Jackson
New computer - I have installed TeeChartVCLFMXSOURCE-2016.19 into RAD Studio 10.1 Berlin and everything has been working OK all day.
I changed a form which does not have any references to TeeChart and then re compiled and was surprised to get the following error
Code: Select all
[dcc32 Warning] Opencal.pas(46): W1005 Unit 'Vcl.FileCtrl' is specific to a platform
[dcc32 Error] TeCanvas.pas(5672): E2010 Incompatible types: 'VCLTee.TeCanvas.TTeeCanvas' and 'TeCanvas.TTeeCanvas'
[dcc32 Error] TeCanvas.pas(8468): E2010 Incompatible types: 'TTeeCanvas' and 'TTeeCanvas3D'
[dcc32 Fatal Error] TeeProcs.pas(662): F2063 Could not compile used unit 'TeCanvas.pas'
Code: Select all
{$IFDEF D16}
TRectF=System.Types.TRectF;
{$ELSE}
TRectF=record
Left,
Top,
Right,
Bottom : Single;
end;
{$ENDIF}
Many Thanks
Philip L Jackson