From 13e48e71d03cc199e3abbb6f3dbb8b81b9859b40 Mon Sep 17 00:00:00 2001 From: mattias Date: Mon, 1 Sep 2003 07:27:41 +0000 Subject: [PATCH] fixed typo git-svn-id: trunk@4552 - --- lcl/include/winapi.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lcl/include/winapi.inc b/lcl/include/winapi.inc index 5989c232af..77e99ba8d5 100644 --- a/lcl/include/winapi.inc +++ b/lcl/include/winapi.inc @@ -354,6 +354,7 @@ end; {------------------------------------------------------------------------------ Function: GetClientBounds Params: handle: + ARect: Result: Returns: true on success @@ -361,9 +362,9 @@ end; the inner area of a control, where the child controls are visible. The coordinates are relative to the control's left and top. ------------------------------------------------------------------------------} -Function GetClientBounds(handle : HWND; var Rect : TRect) : Boolean; +Function GetClientBounds(Handle: HWND; var ARect: TRect): Boolean; begin - Result := InterfaceObject.GetClientBounds(handle, Rect); + Result := InterfaceObject.GetClientBounds(Handle, ARect); end; {------------------------------------------------------------------------------ @@ -1676,6 +1677,9 @@ end; { ============================================================================= $Log$ + Revision 1.98 2003/09/01 07:27:41 mattias + fixed typo + Revision 1.97 2003/08/26 08:12:33 mattias applied listbox/combobox patch from Karl