diff options
Diffstat (limited to 'Libraries/LibWeb/Layout/LayoutTableCell.cpp')
-rw-r--r-- | Libraries/LibWeb/Layout/LayoutTableCell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutTableCell.cpp b/Libraries/LibWeb/Layout/LayoutTableCell.cpp index 30e69465be..074552887f 100644 --- a/Libraries/LibWeb/Layout/LayoutTableCell.cpp +++ b/Libraries/LibWeb/Layout/LayoutTableCell.cpp @@ -30,7 +30,7 @@ namespace Web { -LayoutTableCell::LayoutTableCell(DOM::Document& document, const DOM::Element& element, NonnullRefPtr<StyleProperties> style) +LayoutTableCell::LayoutTableCell(DOM::Document& document, const DOM::Element& element, NonnullRefPtr<CSS::StyleProperties> style) : LayoutBlock(document, &element, move(style)) { } |