This commit is contained in:
scott%scott-macgregor.org 2004-05-10 02:29:32 +00:00
Родитель 4a930872d5
Коммит 8525952c3e
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -164,7 +164,7 @@ interface nsIMsgCompose : nsISupports {
CheckAndPopulateRecipients will perform several tasks: CheckAndPopulateRecipients will perform several tasks:
1) if populateMailList is true, it will populate mailing presents in the compose field 1) if populateMailList is true, it will populate mailing presents in the compose field
2) if returnNoHTMLRecipients is true, build a list of non HTML recipient 2) if returnNoHTMLRecipients is true, build a list of non HTML recipient
3) return the lowest common format preferred by recipients (unknow, plaintext or html) 3) return the lowest common format preferred by recipients (unknown, plaintext or html)
*/ */
unsigned long CheckAndPopulateRecipients(in boolean populateMailList, in boolean returnNonHTMLRecipients, out wstring nonHTMLRecipients); unsigned long CheckAndPopulateRecipients(in boolean populateMailList, in boolean returnNonHTMLRecipients, out wstring nonHTMLRecipients);

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

@ -3852,7 +3852,7 @@ NS_IMETHODIMP nsMsgCompose::CheckAndPopulateRecipients(PRBool populateMailList,
if (originalRecipients[i].IsEmpty()) if (originalRecipients[i].IsEmpty())
continue; continue;
rv = m_compFields->SplitRecipientsEx(originalRecipients[i].get(), rv = m_compFields->SplitRecipientsEx(originalRecipients[i].get(),
getter_AddRefs(addressArray), getter_AddRefs(emailArray)); getter_AddRefs(addressArray), getter_AddRefs(emailArray));
if (NS_SUCCEEDED(rv)) if (NS_SUCCEEDED(rv))
{ {
PRInt32 nbrRecipients; PRInt32 nbrRecipients;