Pass WM_COMMAND and WM_NOTIFY to parent as received.

This commit is contained in:
Guy L. Albertelli 2000-12-18 03:12:31 +00:00 committed by Alexandre Julliard
parent 08e7086189
commit 762ed03a3e
1 changed files with 6 additions and 0 deletions

View File

@ -899,6 +899,12 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return COMBOEX_SetItemHeight (hwnd, wParam, lParam);
/* Messages passed to parent */
case WM_COMMAND:
case WM_NOTIFY:
return SendMessageA (GetParent (hwnd), uMsg, wParam, lParam);
case WM_CREATE:
return COMBOEX_Create (hwnd, wParam, lParam);