Huw Davies (@huw) commented about dlls/riched20/tests/editor.c:
SendMessageA(wnd, WM_PASTE, 0, 0);
if (SendMessageA(wnd, EM_GETMODIFY, 0, 0)) return;
- }
- ok_(__FILE__, line)(0, "Failed to paste clipboard content\n");
- {
char classname[256];
HWND clipwnd = GetOpenClipboardWindow();
/* Provide a hint as to the source of interference:
* - The class name would typically be CLIPBRDWNDCLASS if the
* clipboard was opened by a Windows application using the
* ole32 API.
* - And it would be __wine_clipboard_manager if it was opened in
* response to a native application.
*/
GetClassNameA(clipwnd, classname, ARRAY_SIZE(classname));
trace("%p (%s) opened the clipboard\n", clipwnd, classname);
I guess I missed it last time, but could this block be 4-space indented like the rest of the function?