Commit 3c878a55 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

wordpad: Remove unneeded output messages.

parent 1390425c
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment