diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/FormattingContext.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/FormattingContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp index c11c5bb1ca..d6899a790c 100644 --- a/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp +++ b/Userland/Libraries/LibWeb/Layout/FormattingContext.cpp @@ -22,7 +22,7 @@ namespace Web::Layout { FormattingContext::FormattingContext(Type type, Box& context_box, FormattingContext* parent) : m_type(type) , m_parent(parent) - , m_context_box(&context_box) + , m_context_box(context_box) { } |