Apparently, nsIURL::GetSpec changed...

This commit is contained in:
cls%seawood.org 1998-12-16 11:33:33 +00:00
parent a885776445
commit 0d4267a93f

View File

@ -68,7 +68,10 @@ nsresult nsWebShellWindow::Initialize(nsIAppShell* aShell, nsIURL* aUrl)
{
nsresult rv;
nsString urlString(aUrl->GetSpec());
nsString urlString;
const char *tmpStr = NULL;
aUrl->GetSpec(&tmpStr);
urlString = tmpStr;
// XXX: need to get the default window size from prefs...
nsRect r(0, 0, 600, 400);