Fix small issue with patch for bug 361334 (Onbeforeunload dialog has too many line breaks), r+sr=jst

This commit is contained in:
martijn.martijn%gmail.com 2006-11-22 18:41:11 +00:00
Родитель 1b87b66d60
Коммит c76075c699
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -1196,8 +1196,7 @@ DocumentViewerImpl::PermitUnload(PRBool *aPermitUnload)
nsAutoString msg;
if (len == 0) {
msg = preMsg + StringHead(event.text, len) +
NS_LITERAL_STRING("\n\n") + postMsg;
msg = preMsg + NS_LITERAL_STRING("\n\n") + postMsg;
} else {
msg = preMsg + NS_LITERAL_STRING("\n\n") +
StringHead(event.text, len) +