diff options
Diffstat (limited to 'Libraries/LibWeb/PageView.cpp')
-rw-r--r-- | Libraries/LibWeb/PageView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Libraries/LibWeb/PageView.cpp b/Libraries/LibWeb/PageView.cpp index 84c24bc2b1..4ae7dc2abf 100644 --- a/Libraries/LibWeb/PageView.cpp +++ b/Libraries/LibWeb/PageView.cpp @@ -221,12 +221,12 @@ void PageView::page_did_middle_click_link(const String& href, [[maybe_unused]] c void PageView::page_did_enter_tooltip_area(const Gfx::IntPoint& content_position, const String& title) { - GUI::Application::the().show_tooltip(title, screen_relative_rect().location().translated(to_widget_position(content_position))); + GUI::Application::the()->show_tooltip(title, screen_relative_rect().location().translated(to_widget_position(content_position))); } void PageView::page_did_leave_tooltip_area() { - GUI::Application::the().hide_tooltip(); + GUI::Application::the()->hide_tooltip(); } void PageView::page_did_hover_link(const URL& url) |