comctl32: Don't pass unrelated control to UnChanged.

This commit is contained in:
Andrew Eikum 2009-08-13 17:36:25 -05:00 committed by Alexandre Julliard
parent 3dcd46f597
commit 4a14ed43fa
1 changed files with 1 additions and 1 deletions

View File

@ -3492,7 +3492,7 @@ PROPSHEET_DialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
* from which to switch to the next page */
SendMessageW(hwndTabCtrl, TCM_SETCURSEL, psInfo->active_page, 0);
PROPSHEET_UnChanged(hwnd, (HWND)wParam);
PROPSHEET_UnChanged(hwnd, NULL);
return TRUE;
}