This commit is contained in:
bienvenu%netscape.com 1999-03-28 23:09:16 +00:00
Родитель eb2dcca8dc
Коммит a3cb27cd37
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1896,7 +1896,7 @@ PRBool nsMsgDatabase::ThreadBySubjectWithoutRe()
nsresult nsMsgDatabase::GetBoolPref(const char *prefName, PRBool *result)
{
PRBool prefValue = PR_FALSE;
XP_Bool prefValue = PR_FALSE;
nsIPref* prefs = nsnull;
nsresult rv;
rv = nsServiceManager::GetService(kPrefCID, kIPrefIID, (nsISupports**)&prefs);
@ -1904,7 +1904,8 @@ nsresult nsMsgDatabase::GetBoolPref(const char *prefName, PRBool *result)
{
// prefs->Startup("prefs.js");
rv = prefs->GetBoolPref(prefName, result);
rv = prefs->GetBoolPref(prefName, &prefValue);
*result = (PRBool) prefValue;
nsServiceManager::ReleaseService(kPrefCID, prefs);
}
return rv;