From cee6d8af233aeff40c953169b6575e9fa3e3e82c Mon Sep 17 00:00:00 2001 From: "jst%netscape.com" Date: Fri, 31 Aug 2001 23:31:31 +0000 Subject: [PATCH] Fixing bug 96489. tablerow.insertCell() not returning cell object, patch by Fabian , r=peterv@netscape.com, sr=jst@netscape.com, a=blizzard@mozilla.org git-svn-id: svn://10.0.0.236/trunk@102130 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/html/content/src/nsHTMLTableRowElement.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/mozilla/content/html/content/src/nsHTMLTableRowElement.cpp b/mozilla/content/html/content/src/nsHTMLTableRowElement.cpp index b89f83e7beb..3ba80074613 100644 --- a/mozilla/content/html/content/src/nsHTMLTableRowElement.cpp +++ b/mozilla/content/html/content/src/nsHTMLTableRowElement.cpp @@ -454,8 +454,6 @@ nsHTMLTableRowElement::InsertCell(PRInt32 aIndex, nsIDOMHTMLElement** aValue) cells->Item(refIndex, getter_AddRefs(refCell)); - nsCOMPtr retChild; - rv = InsertBefore(cellNode, refCell, getter_AddRefs(retChild)); } else { rv = AppendChild(cellNode, getter_AddRefs(retChild));