changed PurgeHistory() text to indicate request for number of removed items.

git-svn-id: svn://10.0.0.236/trunk@112793 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
depstein%netscape.com
2002-01-25 01:00:26 +00:00
parent 46b8706d18
commit 092538c43e
2 changed files with 2 additions and 2 deletions

View File

@@ -141,7 +141,7 @@ NS_IMETHODIMP CBrowserImpl::OnHistoryPurge(PRInt32 theNumEntries, PRBool *notify
{
QAOutput("nsIHistoryListener::OnHistoryPurge()", 2);
*notify = PR_TRUE;
*notify = PR_FALSE;
FormatAndPrintOutput("OnHistoryPurge() notification = ", *notify, 1);
FormatAndPrintOutput("OnHistoryPurge() theNumEntries = ", theNumEntries, 2);

View File

@@ -410,7 +410,7 @@ void CNsIHistory::PurgeHistoryTest(nsISHistory* theSessionHistory, PRInt32 numEn
{
rv = theSessionHistory->PurgeHistory(numEntries);
RvTestResult(rv, "PurgeHistory() test", 2);
FormatAndPrintOutput("Number of removed entries = ", numEntries, 2);
FormatAndPrintOutput("PurgeHistory(): num requested entries for removal = ", numEntries, 2);
}
void CNsIHistory::RunAllHistoryEntryTests()