1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:27:35 +00:00

Ladybird/Qt: Rename new_tab(StringView) to new_tab_from_content

Having an overload of new_tab with StringView and QString that each do
very different things is uncomfortable, to say the least.
This commit is contained in:
Andrew Kaster 2024-01-30 18:52:59 -07:00 committed by Tim Flynn
parent 48ce8fb4e9
commit a91680dd55
3 changed files with 3 additions and 3 deletions

View file

@ -477,7 +477,7 @@ Tab& BrowserWindow::new_tab(QString const& url, Web::HTML::ActivateTab activate_
return tab;
}
Tab& BrowserWindow::new_tab(StringView html, Web::HTML::ActivateTab activate_tab)
Tab& BrowserWindow::new_tab_from_content(StringView html, Web::HTML::ActivateTab activate_tab)
{
auto& tab = create_new_tab(activate_tab);
tab.load_html(html);