Commit 762ed03a authored by Guy L. Albertelli's avatar Guy L. Albertelli Committed by Alexandre Julliard

Pass WM_COMMAND and WM_NOTIFY to parent as received.

parent 08e70861
......@@ -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);
......
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