Remove call that the compilers can't figure out.

Appears that perhaps the IDL compiler isn't getting called on nsIPref.idl in time.
This commit is contained in:
norris%netscape.com 1999-11-11 23:25:59 +00:00
Родитель e855259618
Коммит 13907371db
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -2004,7 +2004,12 @@ nsScriptSecurityManager::InitFromPrefs()
NS_WITH_SERVICE(nsIPref, prefs, kPrefServiceCID, &rv);
if (NS_FAILED(rv))
return NS_ERROR_FAILURE;
rv = prefs->EnumerateChildren("security.policy", enumeratePolicy,
(void *) domPropertyPolicyTypes);
/*
Comment out for now; for some reason nsIPref.idl isn't getting built
into inIPref.h in time.
prefs->EnumerateChildren("security.policy", enumeratePolicy,
(void *) domPropertyPolicyTypes);
*/
return NS_OK;
}