Commit f12e130f authored by Nog's avatar Nog Committed by Alexandre Julliard

Pass on all unhandeled messages to the owner.

parent 58250253
......@@ -2977,7 +2977,7 @@ TAB_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
if (uMsg >= WM_USER)
WARN("unknown msg %04x wp=%08x lp=%08lx\n",
uMsg, wParam, lParam);
return DefWindowProcA (hwnd, uMsg, wParam, lParam);
return SendMessageA(GetParent(hwnd), uMsg, wParam, lParam);
}
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment