Renamed the parameters to be *Child* instead of *Self* to be better in sync with the function name OnChildProgressChange().

git-svn-id: svn://10.0.0.236/trunk@64480 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net
2000-03-29 10:11:36 +00:00
parent b2d837f227
commit 18b12cc9a6

View File

@@ -390,13 +390,13 @@ NS_IMETHODIMP nsDocShellTreeOwner::OnProgressChange(nsIChannel* aChannel,
}
NS_IMETHODIMP nsDocShellTreeOwner::OnChildProgressChange(nsIChannel* aChannel,
PRInt32 aCurSelfProgress, PRInt32 aMaxSelfProgress)
PRInt32 aCurChildProgress, PRInt32 aMaxChildProgress)
{
if(!mOwnerProgressListener)
return NS_OK;
return mOwnerProgressListener->OnChildProgressChange(aChannel,
aCurSelfProgress, aMaxSelfProgress);
aCurChildProgress, aMaxChildProgress);
}
NS_IMETHODIMP nsDocShellTreeOwner::OnStatusChange(nsIChannel* aChannel,