From 49d34b88ed35fe6aad28270ff7bf828a54dcbc1e Mon Sep 17 00:00:00 2001 From: "valeski%netscape.com" Date: Fri, 27 Apr 2001 22:35:13 +0000 Subject: [PATCH] fixing build bustage --- uriloader/exthandler/mac/nsOSHelperAppService.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/uriloader/exthandler/mac/nsOSHelperAppService.cpp b/uriloader/exthandler/mac/nsOSHelperAppService.cpp index d9ee9775f20..fd20a6441e9 100644 --- a/uriloader/exthandler/mac/nsOSHelperAppService.cpp +++ b/uriloader/exthandler/mac/nsOSHelperAppService.cpp @@ -84,13 +84,12 @@ NS_IMETHODIMP nsOSHelperAppService::ExternalProtocolHandlerExists(const char * a nsCOMPtr stringBundleService = do_GetService(NS_STRINGBUNDLE_CONTRACTID); if (stringBundleService) { - nsILocale* locale = nsnull; nsCOMPtr appLauncherBundle; - rv = stringBundleService->CreateBundle(HELPERAPPLAUNCHER_BUNDLE_URL, locale, getter_AddRefs(appLauncherBundle)); + rv = stringBundleService->CreateBundle(HELPERAPPLAUNCHER_BUNDLE_URL, getter_AddRefs(appLauncherBundle)); if (rv == NS_OK) { nsCOMPtr brandBundle; - rv = stringBundleService->CreateBundle(BRAND_BUNDLE_URL, locale, getter_AddRefs(brandBundle)); + rv = stringBundleService->CreateBundle(BRAND_BUNDLE_URL, getter_AddRefs(brandBundle)); if (rv == NS_OK) { nsXPIDLString brandName;