destroy window handles when program terminates
authorChristoph von Wittich <christoph_vw@reactos.org>
Mon, 17 Oct 2005 09:44:17 +0000 (09:44 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Mon, 17 Oct 2005 09:44:17 +0000 (09:44 +0000)
svn path=/trunk/; revision=18507

reactos/subsys/system/msconfig/msconfig.c

index 6a3cf92..571ba5b 100644 (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);
 
     }