bug 233625 skip uninstall offer to nuke directory, only uninstall files we explicitly installed r=mconnor,a=asa

This commit is contained in:
dveditz%cruzio.com 2005-02-12 00:05:12 +00:00
parent 3a3e51d9e9
commit 4280841edf

View File

@ -334,7 +334,9 @@ LRESULT CALLBACK DlgProcUninstall(HWND hDlg, UINT msg, WPARAM wParam, LONG lPara
EnableWindow(GetDlgItem(hDlg, IDWIZNEXT), FALSE);
EnableWindow(GetDlgItem(hDlg, IDCANCEL), FALSE);
ParseAllUninstallLogs();
VerifyAndDeleteInstallationFolder();
// skip directory nuking for now (bug 233625) but may come back
// if the issues can be resolved in a better way by bug 281235
// VerifyAndDeleteInstallationFolder();
DestroyWindow(hDlg);
PostQuitMessage(0);
break;