diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-17 15:58:29 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-17 18:05:35 +0200 |
commit | 56c3748dcc8d6faf3815bbde29df741cb7b8ffc7 (patch) | |
tree | f1033cd0ad428d92cf9b7573cbc1bdd044436278 /Applications/IRCClient | |
parent | ba856c7ebe1507773cabc2d4ec90bdd904ca1e59 (diff) | |
download | serenity-56c3748dcc8d6faf3815bbde29df741cb7b8ffc7.zip |
LibWeb: Rename PageView => InProcessWebView
Diffstat (limited to 'Applications/IRCClient')
-rw-r--r-- | Applications/IRCClient/IRCWindow.cpp | 4 | ||||
-rw-r--r-- | Applications/IRCClient/IRCWindow.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Applications/IRCClient/IRCWindow.cpp b/Applications/IRCClient/IRCWindow.cpp index 4272dbbb71..60e2ab839e 100644 --- a/Applications/IRCClient/IRCWindow.cpp +++ b/Applications/IRCClient/IRCWindow.cpp @@ -39,7 +39,7 @@ #include <LibGUI/TextBox.h> #include <LibGUI/TextEditor.h> #include <LibGUI/Window.h> -#include <LibWeb/PageView.h> +#include <LibWeb/InProcessWebView.h> IRCWindow::IRCWindow(IRCClient& client, void* owner, Type type, const String& name) : m_client(client) @@ -52,7 +52,7 @@ IRCWindow::IRCWindow(IRCClient& client, void* owner, Type type, const String& na // Make a container for the log buffer view + (optional) member list. auto& container = add<GUI::HorizontalSplitter>(); - m_page_view = container.add<Web::PageView>(); + m_page_view = container.add<Web::InProcessWebView>(); if (m_type == Channel) { auto& member_view = container.add<GUI::TableView>(); diff --git a/Applications/IRCClient/IRCWindow.h b/Applications/IRCClient/IRCWindow.h index bd60df54a3..6cb00235f8 100644 --- a/Applications/IRCClient/IRCWindow.h +++ b/Applications/IRCClient/IRCWindow.h @@ -74,7 +74,7 @@ private: void* m_owner { nullptr }; Type m_type; String m_name; - RefPtr<Web::PageView> m_page_view; + RefPtr<Web::InProcessWebView> m_page_view; RefPtr<GUI::TextBox> m_text_box; RefPtr<IRCLogBuffer> m_log_buffer; RefPtr<GUI::Menu> m_context_menu; |