зеркало из https://github.com/mozilla/gecko-dev.git
Implemented Reload() on nsIWebShell
This commit is contained in:
Родитель
c07c4a5ef1
Коммит
51fe5f427d
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче