diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp b/Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp index c8dfc2bc30..aeb4163f8d 100644 --- a/Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp +++ b/Userland/Libraries/LibWeb/Layout/LayoutPosition.cpp @@ -33,7 +33,7 @@ LayoutRange LayoutRange::normalized() const return { m_end, m_start }; } -NonnullRefPtr<DOM::Range> LayoutRange::to_dom_range() const +JS::NonnullGCPtr<DOM::Range> LayoutRange::to_dom_range() const { VERIFY(is_valid()); |