From 5e79f9ef5b66eca10aae017df8a5451a5198652f Mon Sep 17 00:00:00 2001 From: vincents Date: Tue, 6 Oct 2009 08:04:26 +0000 Subject: [PATCH] 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 - --- lcl/include/winapi.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lcl/include/winapi.inc b/lcl/include/winapi.inc index 8ab5688cde..580ea87218 100644 --- a/lcl/include/winapi.inc +++ b/lcl/include/winapi.inc @@ -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;