mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 08:38:12 +00:00
Ladybird/Qt: Rename new_tab to new_tab_from_url and make it take AK::URL
Instead of having QString be the API for these load() calls, just pipe AK::URL throughout the UI.
This commit is contained in:
parent
a91680dd55
commit
c75bd4ed15
6 changed files with 29 additions and 17 deletions
|
@ -21,3 +21,13 @@ QString qstring_from_ak_string(StringView ak_string)
|
|||
{
|
||||
return QString::fromUtf8(ak_string.characters_without_null_termination(), static_cast<qsizetype>(ak_string.length()));
|
||||
}
|
||||
|
||||
AK::URL ak_url_from_qstring(QString const& qstring)
|
||||
{
|
||||
return AK::URL(qstring.toUtf8().data());
|
||||
}
|
||||
|
||||
AK::URL ak_url_from_qurl(QUrl const& qurl)
|
||||
{
|
||||
return AK::URL(qurl.toString().toUtf8().data());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue