comctl32: header: Call DefWindowProcW not DefWindowProcA.

This commit is contained in:
Mikołaj Zalewski 2006-10-11 20:56:47 +02:00 committed by Alexandre Julliard
parent 3f89a71323
commit 8304d0675f
1 changed files with 1 additions and 1 deletions

View File

@ -2100,7 +2100,7 @@ HEADER_WindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
if ((msg >= WM_USER) && (msg < WM_APP))
ERR("unknown msg %04x wp=%04x lp=%08lx\n",
msg, wParam, lParam );
return DefWindowProcA (hwnd, msg, wParam, lParam);
return DefWindowProcW(hwnd, msg, wParam, lParam);
}
}