LCL: fixed compilation on Mac OS X, there is a procedure Move(dh: SInt16; dv: SInt16) in the unit MacOSAll

git-svn-id: trunk@22054 -
This commit is contained in:
vincents 2009-10-06 08:04:26 +00:00
parent 5a0f95b483
commit 5e79f9ef5b

View File

@ -961,7 +961,7 @@ end;
------------------------------------------------------------------------------}
function CopyRect(var DestRect: TRect; const SrcRect: TRect): Boolean;
begin
Move(SrcRect, DestRect, SizeOf(TRect));
System.Move(SrcRect, DestRect, SizeOf(TRect));
Result := True;
end;