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

Ladybird: Add ak_string_from_qstring function

This will be used later when doing the conversion from the QString in
QSettings for the homepage URL.
This commit is contained in:
martinfalisse 2023-02-01 18:47:56 +01:00 committed by Linus Groh
parent 4be6ee85e0
commit 65cf562a71
2 changed files with 7 additions and 0 deletions

View file

@ -7,9 +7,11 @@
#pragma once
#include <AK/DeprecatedString.h>
#include <AK/String.h>
#include <QString>
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&);
void platform_init();