mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-22 04:25:13 +00:00
LibWeb: Remove some unused functions from LayoutTable
This commit is contained in:
parent
ec39f419e5
commit
63b1c8e882
Notes:
sideshowbarker
2024-07-19 05:38:54 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/63b1c8e8828
2 changed files with 0 additions and 13 deletions
|
@ -44,14 +44,4 @@ void LayoutTable::layout(LayoutMode layout_mode)
|
|||
LayoutBlock::layout(layout_mode);
|
||||
}
|
||||
|
||||
LayoutTableRow* LayoutTable::first_row()
|
||||
{
|
||||
return first_child_of_type<LayoutTableRow>();
|
||||
}
|
||||
|
||||
const LayoutTableRow* LayoutTable::first_row() const
|
||||
{
|
||||
return first_child_of_type<LayoutTableRow>();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -39,9 +39,6 @@ public:
|
|||
|
||||
virtual void layout(LayoutMode = LayoutMode::Default) override;
|
||||
|
||||
LayoutTableRow* first_row();
|
||||
const LayoutTableRow* first_row() const;
|
||||
|
||||
private:
|
||||
virtual bool is_table() const override { return true; }
|
||||
virtual const char* class_name() const override { return "LayoutTable"; }
|
||||
|
|
Loading…
Add table
Reference in a new issue