summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp')
-rw-r--r--Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp b/Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp
index af1d3b3412..5fb81d915f 100644
--- a/Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp
+++ b/Libraries/LibWeb/Layout/LayoutTableRowGroup.cpp
@@ -31,8 +31,8 @@
namespace Web {
-LayoutTableRowGroup::LayoutTableRowGroup(const Element& element, NonnullRefPtr<StyleProperties> style)
- : LayoutBlock(&element, move(style))
+LayoutTableRowGroup::LayoutTableRowGroup(Document& document, const Element& element, NonnullRefPtr<StyleProperties> style)
+ : LayoutBlock(document, &element, move(style))
{
}