- fix debug-only information() string for table cells
* rendering/RenderObject.cpp:
(WebCore::RenderObject::information):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@15639
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-07-26 Mitz Pettel <opendarwin.org@mitzpettel.com>
+
+ Reviewed by ap.
+
+ - fix debug-only information() string for table cells
+
+ * rendering/RenderObject.cpp:
+ (WebCore::RenderObject::information):
+
2006-07-25 David Harrison <harrison@apple.com>
Reviewed by timo and Darin.
ts << " (" << xPos() << "," << yPos() << "," << width() << "," << height() << ")";
if (isTableCell()) {
const RenderTableCell* cell = static_cast<const RenderTableCell *>(this);
- ts << " [r=" << cell->row() << " c=" + cell->col() << " rs=" + cell->rowSpan() << " cs=" + cell->colSpan() << "]";
+ ts << " [r=" << cell->row() << " c=" << cell->col() << " rs=" << cell->rowSpan() << " cs=" << cell->colSpan() << "]";
}
}
return str;