This commit is contained in:
troy%netscape.com 1999-02-14 06:38:24 +00:00
Родитель 17dee03b1e
Коммит cbdfdcf022
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -113,7 +113,7 @@ NS_IMETHODIMP
HistoryImpl::GetCurrent(nsString& aCurrent)
{
PRInt32 curIndex;
PRUnichar* curURL = nsnull;
const PRUnichar* curURL = nsnull;
if (nsnull != mWebShell && NS_OK == mWebShell->GetHistoryIndex(curIndex)) {
mWebShell->GetURL(curIndex, &curURL);
@ -127,7 +127,7 @@ NS_IMETHODIMP
HistoryImpl::GetPrevious(nsString& aPrevious)
{
PRInt32 curIndex;
PRUnichar* prevURL = nsnull;
const PRUnichar* prevURL = nsnull;
if (nsnull != mWebShell && NS_OK == mWebShell->GetHistoryIndex(curIndex)) {
mWebShell->GetURL(curIndex-1, &prevURL);
@ -141,7 +141,7 @@ NS_IMETHODIMP
HistoryImpl::GetNext(nsString& aNext)
{
PRInt32 curIndex;
PRUnichar* nextURL = nsnull;
const PRUnichar* nextURL = nsnull;
if (nsnull != mWebShell && NS_OK == mWebShell->GetHistoryIndex(curIndex)) {
mWebShell->GetURL(curIndex+1, &nextURL);