bug 123633, save prefs when closing last window, r=sgehani, sr=jag

git-svn-id: svn://10.0.0.236/trunk@119585 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
morse%netscape.com
2002-04-23 00:50:24 +00:00
parent d016d768cb
commit 0e645dfb8e

View File

@@ -145,6 +145,9 @@ nsresult nsPrefService::Init()
rv = observerService->AddObserver(this, "profile-before-change", PR_TRUE);
if (NS_SUCCEEDED(rv)) {
rv = observerService->AddObserver(this, "profile-do-change", PR_TRUE);
if (NS_SUCCEEDED(rv)) {
rv = observerService->AddObserver(this, "session-logout", PR_TRUE);
}
}
}
return(rv);
@@ -166,6 +169,8 @@ NS_IMETHODIMP nsPrefService::Observe(nsISupports *aSubject, const char *aTopic,
} else if (!nsCRT::strcmp(aTopic, "profile-do-change")) {
ResetUserPrefs();
rv = ReadUserPrefs(nsnull);
} else if (!nsCRT::strcmp(aTopic, "session-logout")) {
rv = SavePrefFile(nsnull);
}
return rv;
}