forgot to check in this part of the patch... fixing camino bustage

This commit is contained in:
cbiesinger%web.de 2005-04-05 23:55:39 +00:00
parent 48ba5ce32b
commit f9beb62ec5
2 changed files with 4 additions and 3 deletions

View File

@ -66,6 +66,7 @@ public:
NS_DECL_NSIDOWNLOAD
NS_DECL_NSITRANSFER
NS_DECL_NSIWEBPROGRESSLISTENER
NS_DECL_NSIWEBPROGRESSLISTENER2
public:

View File

@ -229,9 +229,9 @@ nsDownloadListener::OnProgressChange64(nsIWebProgress *aWebProgress,
PRInt64 aMaxTotalProgress)
{
// XXX truncates 64-bit to 32-bit
return OnProgressChange(aProgress, aRequest,
PRInt32(curSelfProgress), PRInt32(maxSelfProgress),
PRInt32(curTotalProgress), PRInt32(maxTotalProgress));
return OnProgressChange(aWebProgress, aRequest,
PRInt32(aCurSelfProgress), PRInt32(aMaxSelfProgress),
PRInt32(aCurTotalProgress), PRInt32(aMaxTotalProgress));
}