user32: Remove unneeded address-of operators from function names.

This commit is contained in:
Andrew Talbot 2008-07-06 13:00:47 +01:00 committed by Alexandre Julliard
parent 93f656bf85
commit 5806e4b504
1 changed files with 2 additions and 2 deletions

View File

@ -1254,7 +1254,7 @@ static void NC_TrackMinMaxBox( HWND hwnd, WORD wParam )
/* Check if the sysmenu item for minimize is there */
state = GetMenuState(hSysMenu, SC_MINIMIZE, MF_BYCOMMAND);
paintButton = &NC_DrawMinButton;
paintButton = NC_DrawMinButton;
}
else
{
@ -1265,7 +1265,7 @@ static void NC_TrackMinMaxBox( HWND hwnd, WORD wParam )
/* Check if the sysmenu item for maximize is there */
state = GetMenuState(hSysMenu, SC_MAXIMIZE, MF_BYCOMMAND);
paintButton = &NC_DrawMaxButton;
paintButton = NC_DrawMaxButton;
}
SetCapture( hwnd );