From ccc4fe74ce99a55abdaad03b496f9ae9244acdab Mon Sep 17 00:00:00 2001 From: "rpotts%netscape.com" Date: Thu, 26 Aug 1999 23:38:02 +0000 Subject: [PATCH] Fixed up the calls to NewChannel to take a load group... git-svn-id: svn://10.0.0.236/trunk@44704 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/profile/Acct/nsAccount.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mozilla/profile/Acct/nsAccount.cpp b/mozilla/profile/Acct/nsAccount.cpp index a79a6403f45..e32c4c52d9d 100644 --- a/mozilla/profile/Acct/nsAccount.cpp +++ b/mozilla/profile/Acct/nsAccount.cpp @@ -383,8 +383,8 @@ int nsAccount::GetNCIValues(nsString MiddleValue) nsIChannel *channel = nsnull; - // XXX NECKO verb? getter? - ret = service->NewChannel("load", Trial.ToNewCString(), nsnull, nsnull, &channel); + // XXX NECKO verb? loadgroup? getter? + ret = service->NewChannel("load", Trial.ToNewCString(), nsnull, nsnull, nsnull, &channel); if (NS_FAILED(ret)) return ret; @@ -497,8 +497,8 @@ int nsAccount::GetConfigValues(nsString fileName) nsIChannel *channel = nsnull; - // XXX NECKO verb? getter? - ret = service->NewChannel("load", Trial.ToNewCString(), nsnull, nsnull, &channel); + // XXX NECKO verb? loadgroup? getter? + ret = service->NewChannel("load", Trial.ToNewCString(), nsnull, nsnull, nsnull, &channel); if (NS_FAILED(ret)) return ret;