Implemented Reload() on nsIWebShell

This commit is contained in:
vidur%netscape.com 1998-08-13 04:49:16 +00:00
Родитель c07c4a5ef1
Коммит 51fe5f427d
2 изменённых файлов: 12 добавлений и 0 удалений

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

@ -945,6 +945,12 @@ nsWebShell::LoadURL(const nsString& aURLSpec,
NS_IMETHODIMP
nsWebShell::Reload()
{
nsString* s = (nsString*) mHistory.ElementAt(mHistoryIndex);
if (nsnull != s) {
// XXX What about the post data?
return LoadURL(*s, nsnull, PR_FALSE);
}
return NS_OK;
}

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

@ -945,6 +945,12 @@ nsWebShell::LoadURL(const nsString& aURLSpec,
NS_IMETHODIMP
nsWebShell::Reload()
{
nsString* s = (nsString*) mHistory.ElementAt(mHistoryIndex);
if (nsnull != s) {
// XXX What about the post data?
return LoadURL(*s, nsnull, PR_FALSE);
}
return NS_OK;
}