commit | 3a7a0eb9dd9b8b68eb93ee9273fcf065cd995da9 | [log] [tgz] |
---|---|---|
author | Michael Stefaniuc <mstefani@redhat.de> | Thu Aug 27 00:30:56 2009 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Thu Aug 27 11:45:37 2009 +0200 |
tree | e00bb17e25e32f8109594f51795f09952cf64f6b | |
parent | 46ca3c433f99344b2c9cc03bb816633f207f46ff [diff] [blame] |
user32: Remove a stray ';' that produces an empty if condition.
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 @@ } 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: