mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:58:11 +00:00
LibWeb: Remove some unused functions in LayoutTableRow
This commit is contained in:
parent
dc0ed5c860
commit
1f48d5a80d
2 changed files with 0 additions and 28 deletions
|
@ -71,24 +71,4 @@ void LayoutTableRow::layout_row(const Vector<float>& column_widths)
|
|||
set_height(tallest_cell_height);
|
||||
}
|
||||
|
||||
LayoutTableCell* LayoutTableRow::first_cell()
|
||||
{
|
||||
return first_child_of_type<LayoutTableCell>();
|
||||
}
|
||||
|
||||
const LayoutTableCell* LayoutTableRow::first_cell() const
|
||||
{
|
||||
return first_child_of_type<LayoutTableCell>();
|
||||
}
|
||||
|
||||
LayoutTableRow* LayoutTableRow::next_row()
|
||||
{
|
||||
return next_sibling_of_type<LayoutTableRow>();
|
||||
}
|
||||
|
||||
const LayoutTableRow* LayoutTableRow::next_row() const
|
||||
{
|
||||
return next_sibling_of_type<LayoutTableRow>();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue