summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutTable.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-07-26 20:01:35 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-26 20:05:15 +0200
commit1f008c95b6d80adaaf3cf54cf89019c54b70e17f (patch)
treebbb1a7dc68d5cd6fa83bf56e98b94607a7fe766f /Libraries/LibWeb/Layout/LayoutTable.cpp
parent3e389f4cdcffbe68aaa0571af532d6668be32a07 (diff)
downloadserenity-1f008c95b6d80adaaf3cf54cf89019c54b70e17f.zip
LibWeb: Move CSS classes into the Web::CSS namespace
Diffstat (limited to 'Libraries/LibWeb/Layout/LayoutTable.cpp')
-rw-r--r--Libraries/LibWeb/Layout/LayoutTable.cpp2
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))
{
}