88171 r=bienvenu sr=sspitzer; make undo work for multiple mail windows.

This commit is contained in:
naving%netscape.com 2001-07-02 22:05:54 +00:00
Родитель cfd6e3e365
Коммит 8ba53127c6
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -5189,7 +5189,7 @@ nsresult
nsImapMailFolder::SetTransactionManager(nsITransactionManager* txnMgr)
{
nsresult rv = NS_OK;
if (txnMgr && !m_transactionManager)
if (txnMgr)
m_transactionManager = txnMgr;
return rv;
}

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

@ -1508,7 +1508,7 @@ nsresult
nsMsgLocalMailFolder::SetTransactionManager(nsITransactionManager* txnMgr)
{
nsresult rv = NS_OK;
if (!mTxnMgr)
if (txnMgr)
mTxnMgr = do_QueryInterface(txnMgr, &rv);
return rv;
}