1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 15:05:08 +00:00

LibWeb: Move OutOfProcessWebView into the Web namespace

This commit is contained in:
AnotherTest 2020-08-24 15:33:18 +04:30 committed by Andreas Kling
parent 09ccb46980
commit 682b2fdb75
9 changed files with 24 additions and 10 deletions

View file

@ -95,8 +95,7 @@ HelpWindow::HelpWindow(GUI::Window* parent)
m_listview = &list_view;
list_view.set_model(HelpListModel::create());
// FIXME: This should be in the Web namespace!
m_webview = &splitter.add<OutOfProcessWebView>();
m_webview = &splitter.add<Web::OutOfProcessWebView>();
list_view.on_activation = [this](auto& index) {
if (!m_webview)