mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 19:38:12 +00:00
LibGUI: Rename ScrollableWidget => AbstractScrollableWidget
This commit is contained in:
parent
62125796c3
commit
d47f15ab8b
26 changed files with 95 additions and 94 deletions
|
@ -7,7 +7,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/URL.h>
|
||||
#include <LibGUI/ScrollableWidget.h>
|
||||
#include <LibGUI/AbstractScrollableWidget.h>
|
||||
#include <LibGUI/Widget.h>
|
||||
#include <LibWeb/WebViewHooks.h>
|
||||
|
||||
|
@ -16,7 +16,7 @@ namespace Web {
|
|||
class WebContentClient;
|
||||
|
||||
class OutOfProcessWebView final
|
||||
: public GUI::ScrollableWidget
|
||||
: public GUI::AbstractScrollableWidget
|
||||
, public Web::WebViewHooks {
|
||||
C_OBJECT(OutOfProcessWebView);
|
||||
|
||||
|
@ -76,7 +76,7 @@ private:
|
|||
virtual void theme_change_event(GUI::ThemeChangeEvent&) override;
|
||||
virtual void screen_rect_change_event(GUI::ScreenRectChangeEvent&) override;
|
||||
|
||||
// ^ScrollableWidget
|
||||
// ^AbstractScrollableWidget
|
||||
virtual void did_scroll() override;
|
||||
|
||||
void request_repaint();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue