comctl32: Remove unused parameter bEnable from LISTVIEW_Enable.

This commit is contained in:
Gerald Pfeifer 2010-05-09 15:06:02 +02:00 committed by Alexandre Julliard
parent 0453154d99
commit 1bca01cbc1
1 changed files with 2 additions and 2 deletions

View File

@ -9373,7 +9373,7 @@ static LRESULT LISTVIEW_Destroy(LISTVIEW_INFO *infoPtr)
* SUCCESS : TRUE
* FAILURE : FALSE
*/
static BOOL LISTVIEW_Enable(const LISTVIEW_INFO *infoPtr, BOOL bEnable)
static BOOL LISTVIEW_Enable(const LISTVIEW_INFO *infoPtr)
{
if (infoPtr->dwStyle & LVS_OWNERDRAWFIXED)
InvalidateRect(infoPtr->hwndSelf, NULL, TRUE);
@ -11405,7 +11405,7 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return LISTVIEW_Destroy(infoPtr);
case WM_ENABLE:
return LISTVIEW_Enable(infoPtr, (BOOL)wParam);
return LISTVIEW_Enable(infoPtr);
case WM_ERASEBKGND:
return LISTVIEW_EraseBkgnd(infoPtr, (HDC)wParam);