bug 204615: Editor hangs when pasting a list fragment. r=brade sr=dveditz

This commit is contained in:
mrbkap%gmail.com 2005-01-14 21:49:16 +00:00
Родитель 435c455611
Коммит 6c794eecb3
1 изменённых файлов: 7 добавлений и 7 удалений

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

@ -2816,14 +2816,14 @@ nsHTMLEditor::ReplaceOrphanedStructure(PRBool aEnd,
nsIDOMNode* nsHTMLEditor::GetArrayEndpoint(PRBool aEnd,
nsCOMArray<nsIDOMNode>& aNodeArray)
{
PRInt32 listCount = aNodeArray.Count();
if (listCount <= 0)
return nsnull;
if (aEnd)
{
PRInt32 listCount = aNodeArray.Count();
if (listCount <= 0) return nsnull;
else return aNodeArray[listCount-1];
}
else
{
return aNodeArray[0];
return aNodeArray[listCount-1];
}
return aNodeArray[0];
}