LibWeb: LayoutMode line_break_policy => LayoutMode layout_mode

This commit is contained in:
Andreas Kling 2020-05-27 19:20:49 +02:00
commit 35040dd2c4
Notes: sideshowbarker 2024-07-19 06:04:05 +09:00
11 changed files with 41 additions and 41 deletions

View file

@ -39,9 +39,9 @@ LayoutTableRow::~LayoutTableRow()
{
}
void LayoutTableRow::layout(LayoutMode line_break_policy)
void LayoutTableRow::layout(LayoutMode layout_mode)
{
LayoutBox::layout(line_break_policy);
LayoutBox::layout(layout_mode);
}
LayoutTableCell* LayoutTableRow::first_cell()