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

LibWeb: Port CSS::Parser::ComponentValue to new Strings

This commit is contained in:
Sam Atkins 2023-02-14 19:04:12 +00:00 committed by Tim Flynn
parent 05c1b09621
commit a168cda4a7
4 changed files with 13 additions and 13 deletions

View file

@ -2518,7 +2518,7 @@ ErrorOr<String> UnresolvedStyleValue::to_string() const
{
StringBuilder builder;
for (auto& value : m_values)
TRY(builder.try_append(value.to_deprecated_string()));
TRY(builder.try_append(TRY(value.to_string())));
return builder.to_string();
}