http://bugs.winehq.org/show_bug.cgi?id=2813
------- Additional Comments From tony_lambregts@telusplanet.net 2005-07-04 09:54 ------- Well EDIT_NOTIFY_PARENT() is defined in a macro (in edit.c)
#define EDIT_NOTIFY_PARENT(es, wNotifyCode, str) \ do \ { /* Notify parent which has created this edit control */ \ TRACE("notification " str " sent to hwnd=%p\n", es->hwndParent); \ SendMessageW(es->hwndParent, WM_COMMAND, \ MAKEWPARAM(GetWindowLongPtrW((es->hwndSelf),GWLP_ID), wNotifyCode), \ (LPARAM)(es->hwndSelf)); \ } while(0)
SendMessageW() is in dlls/user/message.c and is actually forwarded to SendMessageTimeoutW() you will want to add some fixme's (or traces) in there to see what is happening. If you use traces you will need to include msg in the WINEDEBUG string.