From 8304d0675f67b46716cd182ce93784e6980d8f61 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Miko=C5=82aj=20Zalewski?= Date: Wed, 11 Oct 2006 20:56:47 +0200 Subject: [PATCH] comctl32: header: Call DefWindowProcW not DefWindowProcA. --- dlls/comctl32/header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/comctl32/header.c b/dlls/comctl32/header.c index 820e72ea359..04bf978fbd6 100644 --- a/dlls/comctl32/header.c +++ b/dlls/comctl32/header.c @@ -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); } } -- 2.11.4.GIT