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

@ -22,7 +22,7 @@ public:
virtual void attribute_changed(FlyString const& name, Optional<String> const& old_value, Optional<String> const& value) override;
virtual Gfx::Path get_path(CSSPixelSize viewport_size) override;
virtual Gfx::DeprecatedPath get_path(CSSPixelSize viewport_size) override;
private:
SVGPathElement(DOM::Document&, DOM::QualifiedName);
@ -32,6 +32,6 @@ private:
Vector<PathInstruction> m_instructions;
};
Gfx::Path path_from_path_instructions(ReadonlySpan<PathInstruction>);
Gfx::DeprecatedPath path_from_path_instructions(ReadonlySpan<PathInstruction>);
}