Bug 209806 - MfcEmbed prefs not sticking on restart. The wrong contract ID was being used for a profile sharing component, causing pref writing to fail. r=jag,adamlock/sr=darin

git-svn-id: svn://10.0.0.236/trunk@143932 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ccarlen%netscape.com 2003-06-19 14:33:41 +00:00
parent 3825cdfefa
commit 9c55aacbca

View File

@ -271,7 +271,7 @@ nsresult nsSharedPrefHandler::EnsureTransactionService()
if (mTransService)
return NS_OK;
nsresult rv;
mTransService = do_GetService("@mozilla.org/transaction/service;1", &rv);
mTransService = do_GetService(IPC_TRANSACTIONSERVICE_CONTRACTID, &rv);
return rv;
}