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

(cherry picked from commit c950bcba9f)
This commit is contained in:
Sven Barth 2021-11-08 22:35:45 +01:00
parent 383c4a8e04
commit 28f86382e5

View File

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