LibGfx: Rename Path => DeprecatedPath

This commit is contained in:
Andreas Kling 2024-08-08 10:22:03 +02:00 committed by Andreas Kling
parent de50d27870
commit c8f09312f7
Notes: github-actions[bot] 2024-08-20 07:38:22 +00:00
61 changed files with 216 additions and 216 deletions

View file

@ -33,9 +33,9 @@ void SVGPolygonElement::attribute_changed(FlyString const& name, Optional<String
m_points = AttributeParser::parse_points(value.value_or(String {}));
}
Gfx::Path SVGPolygonElement::get_path(CSSPixelSize)
Gfx::DeprecatedPath SVGPolygonElement::get_path(CSSPixelSize)
{
Gfx::Path path;
Gfx::DeprecatedPath path;
if (m_points.is_empty())
return path;