* FPC side fix for #39432: declare TColor the same way as Lazarus does (this way it's also a distinct type from LongInt)

This commit is contained in:
Sven Barth 2021-11-08 22:35:45 +01:00
parent 292be9029e
commit c950bcba9f

View File

@ -19,7 +19,7 @@ unit System.UITypes;
interface
Type
TColor = Longint;
TColor = -$7FFFFFFF-1..$7FFFFFFF;
PColor = ^TColor;
TColorRef = Cardinal;
PColorRef = ^TColorRef;