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