Bug 610417 followup - Fix types in function definitions. r=smaug a=blocking-fennec

This commit is contained in:
Alon Zakai 2011-01-26 10:52:45 -08:00
Родитель 6b88d49219
Коммит 040de67228
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1001,14 +1001,14 @@ nsSHEntry::SetDocshellID(PRUint64 aID)
NS_IMETHODIMP
nsSHEntry::GetLastTouched(unsigned int *aLastTouched)
nsSHEntry::GetLastTouched(PRUint32 *aLastTouched)
{
*aLastTouched = mLastTouched;
return NS_OK;
}
NS_IMETHODIMP
nsSHEntry::SetLastTouched(unsigned int aLastTouched)
nsSHEntry::SetLastTouched(PRUint32 aLastTouched)
{
mLastTouched = aLastTouched;
return NS_OK;