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

LibWeb: Make a handful of paintable leaf classes final

This commit is contained in:
Andreas Kling 2023-01-11 14:02:53 +01:00
parent f914abaf29
commit 6b4062ab61
4 changed files with 4 additions and 4 deletions

View file

@ -11,7 +11,7 @@
namespace Web::Painting {
class SVGGeometryPaintable : public SVGGraphicsPaintable {
class SVGGeometryPaintable final : public SVGGraphicsPaintable {
JS_CELL(SVGGeometryPaintable, SVGGraphicsPaintable);
public: