Delphi XE2 compatibility
Opened this issue · 2 comments
GoogleCodeExporter commented
Delphi XE2 was unable to compile DSEditors.pas due to lack of version check. I
changed the version check lines as following. Now it compiles.
uses
{$IFDEF VER140} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER150} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER170} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER180} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER200} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER210} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER220} DesignIntf, DesignEditors, {$ELSE}
{$IFDEF VER230} DesignIntf, DesignEditors, {$ELSE}
DsgnIntf, {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF} {$ENDIF}
Forms, Controls, DXSUtil, DSPack;
Original issue reported on code.google.com by celaler...@gmail.com
on 13 Dec 2011 at 8:54
GoogleCodeExporter commented
Can you upload all files plz?
Original comment by ply...@gmail.com
on 10 Jan 2012 at 9:13
GoogleCodeExporter commented
plus 100
Original comment by AlexxDri...@gmail.com
on 24 Jan 2012 at 1:27