Browse Source

--- Merging r24176 into '.':
U rtl/win/wininc/func.inc

# revisions: 24176
r24176 | sergei | 2013-04-07 14:06:01 +0200 (Sun, 07 Apr 2013) | 1 line
Changed paths:
M /trunk/rtl/win/wininc/func.inc

- Removed nested comments which were causing compiler warnings.

git-svn-id: branches/fixes_2_6@25018 -

marco 12 years ago
parent
commit
9417252d6a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      rtl/win/wininc/func.inc

+ 3 - 3
rtl/win/wininc/func.inc

@@ -1287,14 +1287,14 @@ function GetMenuBarInfo(_hwnd:HWND; idObject:longint; idItem:longint; pmbi:LPMEN
 
 function Internal_MenuItemFromPoint(hWnd:HWND; hMenu:HMENU; ptScreenX, ptScreenY : LONG):longint; external 'user32' name 'MenuItemFromPoint';
 
-function MenuItemFromPoint(hWnd:HWND; hMenu:HMENU; ptScreen:POINT):longint; {external 'user32' name 'MenuItemFromPoint';}
+function MenuItemFromPoint(hWnd:HWND; hMenu:HMENU; ptScreen:POINT):longint;
 begin
   MenuItemFromPoint:=Internal_MenuItemFromPoint(hWnd, hMenu, ptScreen.X, ptScreen.Y);
 end;
 
 function Internal_DragDetect(hwnd:HWND; ptX, ptY : LONG):WINBOOL; external 'user32' name 'DragDetect';
 
-function DragDetect(hwnd:HWND; pt:POINT):WINBOOL; {external 'user32' name 'DragDetect';}
+function DragDetect(hwnd:HWND; pt:POINT):WINBOOL;
 begin
   DragDetect:=Internal_DragDetect(hWnd, pt.X, pt.Y);
 end;
@@ -1334,7 +1334,7 @@ end;
 
 function Internal_LBItemFromPt(hLB:HWND; ptX, ptY : LONG; bAutoScroll:WINBOOL):longint; external 'comctl32' name 'LBItemFromPt';
 
-function LBItemFromPt(hLB:HWND; pt:POINT; bAutoScroll:WINBOOL):longint; { external 'comctl32' name 'LBItemFromPt';}
+function LBItemFromPt(hLB:HWND; pt:POINT; bAutoScroll:WINBOOL):longint;
 begin
   LBItemFromPt:=Internal_LBItemFromPt(hLB, pt.X, pt.Y, bAutoScroll);
 end;