user32: Remove a stray ';' that produces an empty if condition.

This commit is contained in:
Michael Stefaniuc 2009-08-27 00:30:56 +02:00 committed by Alexandre Julliard
parent 46ca3c433f
commit 3a7a0eb9dd
1 changed files with 1 additions and 1 deletions

View File

@ -3636,7 +3636,7 @@ static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
}
break;
case VK_ESCAPE:
if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es));
if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es))
PostMessageW(es->hwndParent, WM_CLOSE, 0, 0);
break;
case VK_TAB: