Fix for bug # 103050. Wrong index value passed for OnHistoryGotoIndex(). r=chak sr=alecf

This commit is contained in:
radha%netscape.com 2005-08-18 11:16:26 +00:00
Родитель a5514930cd
Коммит 7234f21342
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -658,7 +658,7 @@ nsSHistory::LoadEntry(PRInt32 aIndex, long aLoadType, PRUint32 aHistCmd)
}
else if (aHistCmd == HIST_CMD_GOTOINDEX) {
// We are going somewhere else. This is not reload either
listener->OnHistoryGotoIndex(mIndex, nextURI, &canNavigate);
listener->OnHistoryGotoIndex(aIndex, nextURI, &canNavigate);
}
}
}