SVN commit 458319 by orlovich: Return TSECTION_ROWS collection for rows of a tsection. No functional difference yet (will be shortly, but w/o that, this is an independent cleanup) M +1 -1 html_table.cpp --- branches/KDE/3.5/kdelibs/khtml/dom/html_table.cpp #458318:458319 @@ -844,7 +844,7 @@ HTMLCollection HTMLTableSectionElement::rows() const { if(!impl) return HTMLCollection(); - return HTMLCollection(impl, HTMLCollectionImpl::TABLE_ROWS); + return HTMLCollection(impl, HTMLCollectionImpl::TSECTION_ROWS); } HTMLElement HTMLTableSectionElement::insertRow( long index )