mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
[SHELL32] Handle WM_CLOSE instead of WM_DESTROY to close the dialog
See issue #4226 for more details. svn path=/trunk/; revision=46814
This commit is contained in:
parent
6fb8027ffd
commit
7759232bf5
1 changed files with 1 additions and 1 deletions
|
@ -756,7 +756,7 @@ static INT_PTR CALLBACK OpenWithProgrammDlg(HWND hwndDlg, UINT uMsg, WPARAM wPar
|
|||
break;
|
||||
}
|
||||
break;
|
||||
case WM_DESTROY:
|
||||
case WM_CLOSE:
|
||||
FreeListItems(hwndDlg);
|
||||
EndDialog(hwndDlg, 0);
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue