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

Ladybird: Add a utility to create a QString from an AK::String

This commit is contained in:
Timothy Flynn 2023-03-13 17:30:31 -04:00 committed by Linus Groh
parent fc15968418
commit b4d3fea002
2 changed files with 7 additions and 0 deletions

View file

@ -13,6 +13,7 @@
AK::DeprecatedString ak_deprecated_string_from_qstring(QString const&);
ErrorOr<String> ak_string_from_qstring(QString const&);
QString qstring_from_ak_deprecated_string(AK::DeprecatedString const&);
QString qstring_from_ak_string(String const&);
void platform_init();
extern DeprecatedString s_serenity_resource_root;