1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

LibWeb: Rename PageView => InProcessWebView

This commit is contained in:
Andreas Kling 2020-08-17 15:58:29 +02:00
parent ba856c7ebe
commit 56c3748dcc
Notes: sideshowbarker 2024-07-19 03:29:11 +09:00
31 changed files with 88 additions and 88 deletions

View file

@ -40,7 +40,7 @@
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/HTML/HTMLHeadElement.h>
#include <LibWeb/PageView.h>
#include <LibWeb/InProcessWebView.h>
// #define EDITOR_DEBUG
@ -51,7 +51,7 @@ Editor::Editor()
m_documentation_tooltip_window = GUI::Window::construct();
m_documentation_tooltip_window->set_rect(0, 0, 500, 400);
m_documentation_tooltip_window->set_window_type(GUI::WindowType::Tooltip);
m_documentation_page_view = m_documentation_tooltip_window->set_main_widget<Web::PageView>();
m_documentation_page_view = m_documentation_tooltip_window->set_main_widget<Web::InProcessWebView>();
}
Editor::~Editor()