Commit 0de8b218 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

A WM_CREATE message sent to an Edit window procedure should

return 1. Power Builder masked edit controls depend on it.
parent 56b63e85
......@@ -3780,7 +3780,11 @@ static LRESULT EDIT_WM_Create(EDITSTATE *es, LPCWSTR name)
}
/* force scroll info update */
EDIT_UpdateScrollInfo(es);
return 0;
/* The rule seems to return 1 here for success */
/* Power Builder masked edit controls will crash */
/* if not. */
/* FIXME: is that in all cases so ? */
return 1;
}
......
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