renamed docloader LoadURL to LoadDocument...

git-svn-id: svn://10.0.0.236/trunk@12414 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rpotts%netscape.com
1998-10-09 05:50:29 +00:00
parent 9dcfa94a21
commit df9ec020e8
2 changed files with 30 additions and 30 deletions

View File

@@ -1093,14 +1093,14 @@ nsWebShell::LoadURL(const PRUnichar *aURLSpec,
Stop();
rv = mDocLoader->LoadURL(urlSpec, // URL string
nsnull, // Command
this, // Container
aPostData, // Post Data
nsnull, // Extra Info...
this, // Observer
(PRInt32)aType, // reload type
aLocalIP); // load attributes.
rv = mDocLoader->LoadDocument(urlSpec, // URL string
nsnull, // Command
this, // Container
aPostData, // Post Data
nsnull, // Extra Info...
this, // Observer
(PRInt32)aType, // reload type
aLocalIP); // load attributes.
return rv;
@@ -1196,13 +1196,13 @@ nsWebShell::GoTo(PRInt32 aHistoryIndex)
// Stop any documents that are currently being loaded...
mDocLoader->Stop();
rv = mDocLoader->LoadURL(urlSpec, // URL string
nsnull, // Command
this, // Container
nsnull, // Post Data
nsnull, // Extra Info...
this, // Observer
nsReload); // the reload type
rv = mDocLoader->LoadDocument(urlSpec, // URL string
nsnull, // Command
this, // Container
nsnull, // Post Data
nsnull, // Extra Info...
this, // Observer
nsReload); // the reload type
}
return rv;
}