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
commit a91680dd55
Notes: sideshowbarker 2024-07-17 07:25:39 +09:00
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);