- Close dialog if user clicks cancel or close button is pressed

- Fixes bug 1126

svn path=/trunk/; revision=20152
This commit is contained in:
Ged Murphy 2005-12-13 22:02:43 +00:00
parent f5fe98f364
commit e5f571b48a

View file

@ -354,9 +354,18 @@ dlProc(HWND Dlg, UINT Msg, WPARAM wParam, LPARAM lParam)
if (wParam == IDCANCEL)
{
SetWindowLongPtrW(Dlg, GWLP_USERDATA, 1);
PostMessage(Dlg, WM_CLOSE, 0, 0);
}
return FALSE;
case WM_CLOSE:
DestroyWindow(Dlg);
return TRUE;
case WM_DESTROY:
PostQuitMessage(0);
return TRUE;
default:
return FALSE;
}