Fixed four more winetests, code taken from wine again

svn path=/trunk/; revision=33910
This commit is contained in:
Gregor Brunmar 2008-06-09 19:14:36 +00:00
parent 2692c60678
commit eaff1fdfa2

View file

@ -4137,6 +4137,8 @@ static BOOL EDIT_WM_Char(EDITSTATE *es, WCHAR c)
if ((es->style & ES_MULTILINE) && !(es->style & ES_READONLY))
{
static const WCHAR tabW[] = {'\t',0};
if (EDIT_IsInsideDialog(es))
break;
EDIT_EM_ReplaceSel(es, TRUE, tabW, TRUE, TRUE);
}
break;