user32: Remove a stray ';' that produces an empty if condition.
This commit is contained in:
parent
46ca3c433f
commit
3a7a0eb9dd
|
@ -3636,7 +3636,7 @@ static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case VK_ESCAPE:
|
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);
|
PostMessageW(es->hwndParent, WM_CLOSE, 0, 0);
|
||||||
break;
|
break;
|
||||||
case VK_TAB:
|
case VK_TAB:
|
||||||
|
|
Loading…
Reference in New Issue