From 86377ddcddb32f37d6c72e2479ba334e9a1d33d7 Mon Sep 17 00:00:00 2001 From: hyatt Date: Tue, 7 Apr 1998 17:49:08 +0000 Subject: [PATCH] Nathan Wykes' fix to get history working with Aurora. References to netscape.hst were changed to point to mozilla.hst instead. --- cmd/winfe/logindg.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/winfe/logindg.cpp b/cmd/winfe/logindg.cpp index aac396c81e7..5ada9b0497b 100644 --- a/cmd/winfe/logindg.cpp +++ b/cmd/winfe/logindg.cpp @@ -2052,8 +2052,8 @@ int login_UpdateFilesToNewLocation(const char * path,CWnd *pParent,BOOL bCop CString csHist = theApp.GetProfileString("History","History File",""); if (!csHist.IsEmpty()) { csTmp = path; - csTmp += "\\netscape.hst"; - pDlg->StartFileUpdate("General Files","netscape.hst"); + csTmp += "\\mozilla.hst"; + pDlg->StartFileUpdate("General Files","mozilla.hst"); if (bCopyDontMove) { WFE_CopyFile(csHist,csTmp); } else { @@ -2063,9 +2063,9 @@ int login_UpdateFilesToNewLocation(const char * path,CWnd *pParent,BOOL bCop } else { if (!csMain.IsEmpty()) { csTmp = path; - csTmp += "\\netscape.hst"; - pDlg->StartFileUpdate("General Files","netscape.hst"); - WFE_CopyFile(csMain + "\\netscape.hst" ,csTmp); + csTmp += "\\mozilla.hst"; + pDlg->StartFileUpdate("General Files","mozilla.hst"); + WFE_CopyFile(csMain + "\\mozilla.hst" ,csTmp); } }