diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:21:22 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-28 18:22:54 +0200 |
commit | 42243d2e06a28bd2da0420eea49d84cb31bb1a9a (patch) | |
tree | c577dfbbf3bf28d9269964747c069bb2921783ba /Applications/Browser/Tab.h | |
parent | 5f8cbe6a1b2c434d7723b05148c299a9e3c01d2d (diff) | |
download | serenity-42243d2e06a28bd2da0420eea49d84cb31bb1a9a.zip |
LibWeb: Rename Web::HtmlView => Web::PageView
This widget doesn't just view HTML, it views a web page. :^)
Diffstat (limited to 'Applications/Browser/Tab.h')
-rw-r--r-- | Applications/Browser/Tab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Browser/Tab.h b/Applications/Browser/Tab.h index 2846c4ed0c..c473d16839 100644 --- a/Applications/Browser/Tab.h +++ b/Applications/Browser/Tab.h @@ -60,7 +60,7 @@ private: void update_bookmark_button(const String& url); History<URL> m_history; - RefPtr<Web::HtmlView> m_html_widget; + RefPtr<Web::PageView> m_page_view; RefPtr<GUI::Action> m_go_back_action; RefPtr<GUI::Action> m_go_forward_action; RefPtr<GUI::Action> m_reload_action; |