summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-05-03 20:31:58 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-03 21:03:13 +0200
commitd47f15ab8b8ff545864fed2a0e275674c1431549 (patch)
treefabc103c53afe63cee72a685b6ba69816e922ec7 /Userland/Applications/Browser
parent62125796c3227c43db3218e308c85e26cdac2843 (diff)
downloadserenity-d47f15ab8b8ff545864fed2a0e275674c1431549.zip
LibGUI: Rename ScrollableWidget => AbstractScrollableWidget
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r--Userland/Applications/Browser/Tab.cpp2
-rw-r--r--Userland/Applications/Browser/Tab.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp
index 011ecf2801..c1587f7e6b 100644
--- a/Userland/Applications/Browser/Tab.cpp
+++ b/Userland/Applications/Browser/Tab.cpp
@@ -680,7 +680,7 @@ void Tab::context_menu_requested(const Gfx::IntPoint& screen_position)
m_tab_context_menu->popup(screen_position);
}
-GUI::ScrollableWidget& Tab::view()
+GUI::AbstractScrollableWidget& Tab::view()
{
if (m_type == Type::InProcessWebView)
return *m_page_view;
diff --git a/Userland/Applications/Browser/Tab.h b/Userland/Applications/Browser/Tab.h
index e02a097998..cade9ccfc7 100644
--- a/Userland/Applications/Browser/Tab.h
+++ b/Userland/Applications/Browser/Tab.h
@@ -61,7 +61,7 @@ public:
const String& title() const { return m_title; }
const Gfx::Bitmap* icon() const { return m_icon; }
- GUI::ScrollableWidget& view();
+ GUI::AbstractScrollableWidget& view();
private:
explicit Tab(Type);