Module: wine Branch: master Commit: 3a7a0eb9dd9b8b68eb93ee9273fcf065cd995da9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3a7a0eb9dd9b8b68eb93ee9273...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu Aug 27 00:30:56 2009 +0200
user32: Remove a stray ';' that produces an empty if condition.
---
dlls/user32/edit.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c index 83e004a..5a62bc2 100644 --- a/dlls/user32/edit.c +++ b/dlls/user32/edit.c @@ -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: