fix for #48994 - correctly clear the default account pref when the default account is deleted

r=ducarroz
This commit is contained in:
alecf%netscape.com 2000-08-18 00:10:15 +00:00
Родитель 8f033867fd
Коммит d0b6edfc2e
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -548,8 +548,10 @@ nsMsgAccountManager::RemoveAccount(nsIMsgAccount *aAccount)
m_accounts->RemoveElement(aAccount);
// if it's the default, clear the default account
if (m_defaultAccount.get() == aAccount)
if (m_defaultAccount.get() == aAccount) {
m_defaultAccount = nsnull;
setDefaultAccountPref(nsnull);
}
// XXX - need to figure out if this is the last time this server is
// being used, and only send notification then.