Adding temporary per cmanske's last fix, fixes linux bustage.

This commit is contained in:
mcafee%netscape.com 1999-12-04 03:32:33 +00:00
Родитель 485e14c825
Коммит f16f4657e1
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -100,7 +100,9 @@ PRBool nsHTMLEditor::IsOnlyRowInTable(nsCOMPtr<nsIDOMElement> &aRow, nsCOMPtr<ns
do {
nsCOMPtr<nsIDOMNode> resultNode;
// Scan through all nodes starting at the row we are interested in
nsresult res = GetNextNode(aTable, PR_TRUE, getter_AddRefs(resultNode));
nsCOMPtr<nsIDOMElement> tmpTable = aTable;
nsresult res = GetNextNode(tmpTable, PR_TRUE, getter_AddRefs(resultNode));
if (NS_SUCCEEDED(res))
{
//Test if it's a row and parent is same as table we are in