diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/InlineNode.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/InlineNode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/InlineNode.cpp b/Userland/Libraries/LibWeb/Layout/InlineNode.cpp index 4e757cf50c..9915624b23 100644 --- a/Userland/Libraries/LibWeb/Layout/InlineNode.cpp +++ b/Userland/Libraries/LibWeb/Layout/InlineNode.cpp @@ -25,7 +25,7 @@ InlineNode::~InlineNode() { } -OwnPtr<Painting::Paintable> InlineNode::create_paintable() const +RefPtr<Painting::Paintable> InlineNode::create_paintable() const { return Painting::InlinePaintable::create(*this); } |