[Bug 2813] Regression: origin6 crashes with 20050310 (20050211 works)

Wine Bugs wine-bugs at winehq.org
Thu Apr 7 09:54:56 CDT 2005


http://bugs.winehq.org/show_bug.cgi?id=2813





------- Additional Comments From tony_lambregts at 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.

-- 
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the wine-bugs mailing list