Module: wine Branch: master Commit: 97efdc1e0d7501dcccb168c33423d0d30dbe806a URL: http://source.winehq.org/git/wine.git/?a=commit;h=97efdc1e0d7501dcccb168c334...
Author: Marcus Meissner marcus@jet.franken.de Date: Fri Mar 18 22:36:10 2011 +0100
shell32: Missing break in IDOK case.
---
dlls/shell32/dialogs.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/shell32/dialogs.c b/dlls/shell32/dialogs.c index 8bc8062..84d8799 100644 --- a/dlls/shell32/dialogs.c +++ b/dlls/shell32/dialogs.c @@ -247,6 +247,7 @@ static INT_PTR CALLBACK RunDlgProc (HWND hwnd, UINT message, WPARAM wParam, LPAR EndDialog (hwnd, 0); } } + return TRUE;
case IDCANCEL : EndDialog (hwnd, 0) ;