mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- break out when required (fixes a bug when checkbox is clicked)
svn path=/trunk/; revision=30787
This commit is contained in:
parent
139ec5a366
commit
e611490600
1 changed files with 3 additions and 0 deletions
|
@ -435,7 +435,10 @@ static BOOL CALLBACK OpenWithProgrammDlg(HWND hwndDlg, UINT uMsg, WPARAM wParam,
|
|||
case 14006: /* cancel */
|
||||
DestroyWindow(hwndDlg);
|
||||
return FALSE;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case WM_NOTIFY:
|
||||
{
|
||||
LPNMHDR lpnm = (LPNMHDR)lParam;
|
||||
|
|
Loading…
Reference in a new issue