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

LibWeb: Use correct arguments in WEB_PLATFORM_OBJECT invocations

The base class should be the second argument, and must be the immediate
base class (not the grandparent).
This commit is contained in:
Timothy Flynn 2023-01-09 21:51:45 -05:00 committed by Andreas Kling
parent 1d7f44b629
commit 59104262a4
4 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
namespace Web::SVG {
class SVGCircleElement final : public SVGGeometryElement {
WEB_PLATFORM_OBJECT(SVGCircleElement, SVGGraphicsElement);
WEB_PLATFORM_OBJECT(SVGCircleElement, SVGGeometryElement);
public:
virtual ~SVGCircleElement() override = default;