Bug 451161 - Part 3: Reverse the reading order of user prefs and AutoConfig. r=roc

This commit is contained in:
Masatoshi Kimura 2011-11-26 20:50:05 +01:00
Родитель 5c181004d6
Коммит 3c032d905d
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -401,11 +401,11 @@ Preferences::ReadUserPrefs(nsIFile *aFile)
nsresult rv;
if (nsnull == aFile) {
rv = UseDefaultPrefFile();
UseUserPrefFile();
NotifyServiceObservers(NS_PREFSERVICE_READ_TOPIC_ID);
rv = UseDefaultPrefFile();
UseUserPrefFile();
} else {
rv = ReadAndOwnUserPrefFile(aFile);
}