1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

wordpad: Remove unneeded output messages.

Signed-off-by: Eric Pouech <epouech@codeweavers.com>
This commit is contained in:
Eric Pouech 2023-11-10 18:08:42 +01:00 committed by Alexandre Julliard
parent 1390425cfc
commit 3c878a5572

View File

@ -2011,12 +2011,7 @@ static LRESULT OnCreate( HWND hWnd )
|ES_WANTRETURN|WS_VSCROLL|ES_NOHIDESEL|WS_HSCROLL,
0, 0, 1000, 100, hWnd, (HMENU)IDC_EDITOR, hInstance, NULL);
if (!hEditorWnd)
{
fprintf(stderr, "Error code %lu\n", GetLastError());
return -1;
}
assert(hEditorWnd);
if (!hEditorWnd) return -1;
setup_richedit_olecallback(hEditorWnd);
SetFocus(hEditorWnd);