lcl: change gradient types from longint to Cardinal (matches windows declarations)

git-svn-id: trunk@31267 -
This commit is contained in:
blikblum 2011-06-18 00:01:28 +00:00
parent a8a3b23fa0
commit 36e0a4b59f

View File

@ -1183,17 +1183,17 @@ type
PGradientTriangle = ^tagGradientTriangle;
tagGRADIENTTRIANGLE = record
Vertex1: Longint;
Vertex2: Longint;
Vertex3: Longint;
Vertex1: Cardinal;
Vertex2: Cardinal;
Vertex3: Cardinal;
end;
GRADIENTTRIANGLE = tagGRADIENTTRIANGLE;
TGradientTriangle = GRADIENTTRIANGLE;
PGradientRect = ^tagGradientRect;
tagGRADIENTRECT = record
UpperLeft: Longint;
LowerRight: Longint;
UpperLeft: Cardinal;
LowerRight: Cardinal;
end;
GRADIENTRECT = tagGRADIENTRECT;
TGradientRect = GRADIENTRECT;