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
commit dca19b764b
Notes: sideshowbarker 2024-07-17 09:39:38 +09:00
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
{