Pass on all unhandeled messages to the owner.

oldstable
Nog 2001-12-17 20:52:11 +00:00 committed by Alexandre Julliard
parent 5825025316
commit f12e130fc2
1 changed files with 1 additions and 1 deletions

View File

@ -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;