Fixed the support for the close button in the ShellAbout dialogs.

This commit is contained in:
Francis Beaudet 1999-09-03 12:42:40 +00:00 committed by Alexandre Julliard
parent d415c9cbf5
commit 360d089690
1 changed files with 4 additions and 0 deletions

View File

@ -605,7 +605,11 @@ BOOL WINAPI AboutDlgProc( HWND hWnd, UINT msg, WPARAM wParam,
return TRUE;
}
break;
case WM_CLOSE:
EndDialog(hWnd, TRUE);
break;
}
return 0;
}