LibWeb: Port custom properties to FlyString

This commit is contained in:
Shannon Booth 2023-11-05 16:19:16 +13:00 committed by Andreas Kling
commit ea2b733862
Notes: sideshowbarker 2024-07-17 01:21:02 +09:00
10 changed files with 31 additions and 32 deletions

View file

@ -19,7 +19,7 @@ public:
Declaration(FlyString name, Vector<ComponentValue> values, Important);
~Declaration();
StringView name() const { return m_name; }
FlyString const& name() const { return m_name; }
Vector<ComponentValue> const& values() const { return m_values; }
Important importance() const { return m_important; }