http://bugs.winehq.org/show_bug.cgi?id=16605
Will Tipton wtipton@hmc.edu changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |dylan.ah.smith@gmail.com
--- Comment #7 from Will Tipton wtipton@hmc.edu 2008-12-24 19:43:10 --- Ok so manually sticking in the bitmap worked and the regression test gives:
5dc1271ba6af791e2f7475da12ed7fb1b25451ba is first bad commit commit 5dc1271ba6af791e2f7475da12ed7fb1b25451ba Author: Dylan Smith dylan.ah.smith@gmail.com Date: Fri Dec 19 10:57:28 2008 -0500
richedit: Move message handling to function callable without window.
In order to make the message handling available to windowless richedit controls, the message handling must be in a function that can be called from the ITextServices_TxSendMessage method. This method will never have a handle to a window to pass to RichEditWndProc_common in order to get the editor with GetWindowLongPtrW, but passing the editor will work (even if hWnd is NULL).
:040000 040000 b56a87544f3da8cafe474b8407ce0df28400cd67 190f0ce5d8876087d2c839127366debd49a20921 M dlls
and indeed it shows to be crashing at riched20/editor.c:3824: SetWindowLongPtrW(editor->hWnd, 0, 0);
Cheers