From d30c026ed36c3fc66878f4d79f1ef70f8afc65e6 Mon Sep 17 00:00:00 2001 From: "gagan%netscape.com" Date: Sat, 22 May 1999 00:21:32 +0000 Subject: [PATCH] Made the baseURL default to null. git-svn-id: svn://10.0.0.236/trunk@32493 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/protocol/http/src/nsHTTPHandler.cpp | 4 ++-- mozilla/netwerk/protocol/http/src/nsHTTPHandler.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/netwerk/protocol/http/src/nsHTTPHandler.cpp b/mozilla/netwerk/protocol/http/src/nsHTTPHandler.cpp index 383bab311a2..d3c721cc5ad 100644 --- a/mozilla/netwerk/protocol/http/src/nsHTTPHandler.cpp +++ b/mozilla/netwerk/protocol/http/src/nsHTTPHandler.cpp @@ -164,8 +164,8 @@ nsHTTPHandler::MakeAbsoluteUrl(const char* i_URL, NS_METHOD nsHTTPHandler::NewUrl(const char* i_URL, - nsIURL* i_BaseURL, - nsIURL* *o_Result) const + nsIURL* *o_Result, + nsIURL* i_BaseURL) const { //todo clean this up... nsresult rv; diff --git a/mozilla/netwerk/protocol/http/src/nsHTTPHandler.h b/mozilla/netwerk/protocol/http/src/nsHTTPHandler.h index 0d249246b01..19c8ff03929 100644 --- a/mozilla/netwerk/protocol/http/src/nsHTTPHandler.h +++ b/mozilla/netwerk/protocol/http/src/nsHTTPHandler.h @@ -87,8 +87,8 @@ public: nsIProtocolConnection* *o_Result); NS_IMETHOD NewUrl(const char* i_URL, - nsIURL* i_BaseUrl, - nsIURL* *o_Result) const; + nsIURL* *o_Result, + nsIURL* i_BaseUrl=0) const; //Functions from nsIHTTPHandler