From 370857c10cc9bfdb9979e47878fc11049654f337 Mon Sep 17 00:00:00 2001 From: "ssu%netscape.com" Date: Mon, 15 May 2000 20:42:12 +0000 Subject: [PATCH] fixing bug 37910 and 39105 git-svn-id: svn://10.0.0.236/trunk@69851 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpinstall/wizard/windows/nsinstall/nsinstall.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mozilla/xpinstall/wizard/windows/nsinstall/nsinstall.cpp b/mozilla/xpinstall/wizard/windows/nsinstall/nsinstall.cpp index 21d540a828e..854771ca1d9 100644 --- a/mozilla/xpinstall/wizard/windows/nsinstall/nsinstall.cpp +++ b/mozilla/xpinstall/wizard/windows/nsinstall/nsinstall.cpp @@ -891,14 +891,13 @@ RunInstaller() WaitForInputIdle(pi.hProcess, 3000); // wait up to 3 seconds if(dwMode != SILENT) { - ShowWindow(dlgInfo.hWndDlg, SW_HIDE); + DestroyWindow(dlgInfo.hWndDlg); } // Wait for the installer to complete WaitForSingleObject(pi.hProcess, INFINITE); CloseHandle(pi.hProcess); - DestroyWindow(dlgInfo.hWndDlg); // Delete the files from the temp directory EnumResourceNames(NULL, "FILE", (ENUMRESNAMEPROC)DeleteTempFilesProc, 0);