summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/Layout/LayoutTableRow.h
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/LayoutTableRow.h
parent3e389f4cdcffbe68aaa0571af532d6668be32a07 (diff)
downloadserenity-1f008c95b6d80adaaf3cf54cf89019c54b70e17f.zip
LibWeb: Move CSS classes into the Web::CSS namespace
Diffstat (limited to 'Libraries/LibWeb/Layout/LayoutTableRow.h')
-rw-r--r--Libraries/LibWeb/Layout/LayoutTableRow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Layout/LayoutTableRow.h b/Libraries/LibWeb/Layout/LayoutTableRow.h
index 657f052f17..d289cd6e6d 100644
--- a/Libraries/LibWeb/Layout/LayoutTableRow.h
+++ b/Libraries/LibWeb/Layout/LayoutTableRow.h
@@ -34,7 +34,7 @@ class LayoutTableCell;
class LayoutTableRow final : public LayoutBox {
public:
- LayoutTableRow(DOM::Document&, const DOM::Element&, NonnullRefPtr<StyleProperties>);
+ LayoutTableRow(DOM::Document&, const DOM::Element&, NonnullRefPtr<CSS::StyleProperties>);
virtual ~LayoutTableRow() override;
void layout_row(const Vector<float>& column_widths);