Skip to content
Snippets Groups Projects
Commit 762ed03a authored by Guy Albertelli's avatar Guy Albertelli Committed by Alexandre Julliard
Browse files

Pass WM_COMMAND and WM_NOTIFY to parent as received.

parent 08e70861
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
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