Skip to content
Snippets Groups Projects
Commit f12e130f authored by György 'Nog' Jeney's avatar György 'Nog' Jeney Committed by Alexandre Julliard
Browse files

Pass on all unhandeled messages to the owner.

parent 58250253
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment