Commit a0dc4210 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Forward CBEM_SETEXSTYLE to CBEM_SETEXTENDEDSTYLE, pass WM_SETTEXT and

WM_GETTEXT down to combo box.
parent 0ed182ff
......@@ -832,6 +832,7 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case CBEM_INSERTITEMW:
return COMBOEX_InsertItemW (hwnd, wParam, lParam);
case CBEM_SETEXSTYLE: /* FIXME: obsoleted, should be the same as: */
case CBEM_SETEXTENDEDSTYLE:
return COMBOEX_SetExtendedStyle (hwnd, wParam, lParam);
......@@ -864,6 +865,8 @@ COMBOEX_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case CB_SETEXTENDEDUI:
case CB_SETITEMDATA:
case CB_SHOWDROPDOWN:
case WM_SETTEXT:
case WM_GETTEXT:
return COMBOEX_Forward (hwnd, uMsg, wParam, lParam);
case CB_SETITEMHEIGHT:
......
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