From b019baf1e8ce453a1bc2cc91bd43b568cce2058c Mon Sep 17 00:00:00 2001 From: "mscott%netscape.com" Date: Thu, 22 Jun 2000 06:04:06 +0000 Subject: [PATCH] not part of the build!!! fixes to get this building on the mac. --- uriloader/exthandler/mac/nsOSHelperAppService.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uriloader/exthandler/mac/nsOSHelperAppService.cpp b/uriloader/exthandler/mac/nsOSHelperAppService.cpp index 2c3f2eabddc8..4b4970cf0f54 100644 --- a/uriloader/exthandler/mac/nsOSHelperAppService.cpp +++ b/uriloader/exthandler/mac/nsOSHelperAppService.cpp @@ -151,10 +151,10 @@ NS_IMETHODIMP nsOSHelperAppService::ExternalProtocolHandlerExists(const char * a NS_IMETHODIMP nsOSHelperAppService::LoadUrl(nsIURI * aURL) { nsresult rv = NS_OK; - +#if 0 // use internet config to launch the uri nsXPIDLCString uriStr; - pUri->GetSpec( getter_Copies( uriStr)); + aURL->GetSpec( getter_Copies( uriStr)); OSStatus err; ICInstance inst; @@ -174,7 +174,7 @@ NS_IMETHODIMP nsOSHelperAppService::LoadUrl(nsIURI * aURL) } (void) ICStop(inst); } - + #endif return rv; }