Forward as attachment should use message send default charset, removed the code which was re-setting the charset which had been initialized to a default charset

by the nsMsgCompose constructor, bug 58494, r=ducarroz, sr=bienvenu.
This commit is contained in:
nhotta%netscape.com 2001-02-07 00:48:09 +00:00
Родитель e9682a958f
Коммит 96ec95b74e
1 изменённых файлов: 0 добавлений и 6 удалений

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

@ -1029,12 +1029,6 @@ nsresult nsMsgCompose::CreateMessage(const PRUnichar * originalMsgURI,
case nsIMsgCompType::ForwardAsAttachment:
{
if (!aCharset.IsEmpty())
{
nsCAutoString aCharsetCStr; aCharsetCStr.AssignWithConversion(aCharset);
m_compFields->SetCharacterSet(aCharsetCStr);
}
subjectStr.AppendWithConversion("[Fwd: ");
subjectStr.AppendWithConversion(subject);
subjectStr.AppendWithConversion("]");