destroy window handles when program terminates

svn path=/trunk/; revision=18507
This commit is contained in:
Christoph von Wittich 2005-10-17 09:44:17 +00:00
parent 39b4f74f8c
commit 35113a023e

View file

@ -123,6 +123,8 @@ MsConfigWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
break;
case WM_DESTROY:
DestroyWindow(hToolsPage);
DestroyWindow(hServicesPage);
return DefWindowProc(hDlg, message, wParam, lParam);
}