From 8cecdb58e5e85831a995e8c2321006cb58fc4dd4 Mon Sep 17 00:00:00 2001 From: "tbogard%aol.net" Date: Wed, 10 Nov 1999 07:27:25 +0000 Subject: [PATCH] Changes to call OpenURI with new parameter set. git-svn-id: svn://10.0.0.236/trunk@53080 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/docshell/base/nsDocShellBase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/docshell/base/nsDocShellBase.cpp b/mozilla/docshell/base/nsDocShellBase.cpp index 7d1545dc390..44848f9e4fb 100644 --- a/mozilla/docshell/base/nsDocShellBase.cpp +++ b/mozilla/docshell/base/nsDocShellBase.cpp @@ -84,8 +84,8 @@ NS_IMETHODIMP nsDocShellBase::LoadURIVia(nsIURI* aUri, NS_ENSURE_SUCCESS(EnsureContentListener(), NS_ERROR_FAILURE); mContentListener->SetPresContext(aPresContext); - NS_ENSURE_SUCCESS(uriLoader->OpenURI(aUri, nsnull, nsnull, nsnull, nsnull, - nsnull, mContentListener, nsnull), NS_ERROR_FAILURE); + NS_ENSURE_SUCCESS(uriLoader->OpenURI(aUri, nsnull, nsnull, mContentListener, + nsnull, nsnull, getter_AddRefs(mLoadCookie)), NS_ERROR_FAILURE); return NS_OK; }