This commit is contained in:
nisheeth%netscape.com 1999-07-08 02:09:50 +00:00
Родитель f23159f787
Коммит bab9878a2f
2 изменённых файлов: 12 добавлений и 2 удалений

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

@ -1881,7 +1881,12 @@ nsWebShell::DoLoadURL(const nsString& aUrlSpec,
rv = presShell->GoToAnchor(nsAutoString(ref));
return rv;
}
else if (aType == nsURLReloadFromHistory) {
#ifdef NECKO
else if (PR_FALSE) // XXX Need to add support for nsURLReloadFromHistory equivalent
#else
else if (aType == nsURLReloadFromHistory)
#endif
{
// Go to the top of the current document
nsCOMPtr<nsIViewManager> viewMgr;
rv = presShell->GetViewManager(getter_AddRefs(viewMgr));

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

@ -1881,7 +1881,12 @@ nsWebShell::DoLoadURL(const nsString& aUrlSpec,
rv = presShell->GoToAnchor(nsAutoString(ref));
return rv;
}
else if (aType == nsURLReloadFromHistory) {
#ifdef NECKO
else if (PR_FALSE) // XXX Need to add support for nsURLReloadFromHistory equivalent
#else
else if (aType == nsURLReloadFromHistory)
#endif
{
// Go to the top of the current document
nsCOMPtr<nsIViewManager> viewMgr;
rv = presShell->GetViewManager(getter_AddRefs(viewMgr));