Bug #364090 --> remove accidental \n when appending the preview text.

This commit is contained in:
scott%scott-macgregor.org 2007-01-10 16:30:57 +00:00
Родитель f20e984fda
Коммит 59115306aa
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1650,7 +1650,7 @@ NS_IMETHODIMP nsMsgDBView::GetCellText(PRInt32 aRow, nsITreeColumn* aCol, nsAStr
rv = FetchPreviewText(msgHdr, previewText);
if (!previewText.IsEmpty())
{
valueText.Append(NS_LITERAL_STRING("\n - "));
valueText.Append(NS_LITERAL_STRING(" - "));
valueText.Append(previewText);
}
}