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

LibWeb: Port CSS::Display to new Strings

This commit is contained in:
Sam Atkins 2023-02-15 11:36:09 +00:00 committed by Tim Flynn
parent 41c4cc95e4
commit dca19b764b
4 changed files with 31 additions and 31 deletions

View file

@ -7,7 +7,7 @@
#pragma once
#include <AK/Assertions.h>
#include <AK/DeprecatedString.h>
#include <AK/String.h>
namespace Web::CSS {
@ -16,7 +16,7 @@ public:
Display() = default;
~Display() = default;
DeprecatedString to_deprecated_string() const;
ErrorOr<String> to_string() const;
bool operator==(Display const& other) const
{