mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +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:
parent
1d7f44b629
commit
59104262a4
Notes:
sideshowbarker
2024-07-17 04:03:27 +09:00
Author: https://github.com/trflynn89 Commit: https://github.com/SerenityOS/serenity/commit/59104262a4 Pull-request: https://github.com/SerenityOS/serenity/pull/16945 Reviewed-by: https://github.com/alimpfard
4 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
|||
namespace Web::DOM {
|
||||
|
||||
class CDATASection final : public Text {
|
||||
WEB_PLATFORM_OBJECT(Text, CDATASection);
|
||||
WEB_PLATFORM_OBJECT(CDATASection, Text);
|
||||
|
||||
public:
|
||||
virtual ~CDATASection() override;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
namespace Web::SVG {
|
||||
|
||||
class SVGEllipseElement final : public SVGGeometryElement {
|
||||
WEB_PLATFORM_OBJECT(SVGEllipseElement, SVGGraphicsElement);
|
||||
WEB_PLATFORM_OBJECT(SVGEllipseElement, SVGGeometryElement);
|
||||
|
||||
public:
|
||||
virtual ~SVGEllipseElement() override = default;
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
namespace Web::SVG {
|
||||
|
||||
class SVGLineElement final : public SVGGeometryElement {
|
||||
WEB_PLATFORM_OBJECT(SVGLineElement, SVGGraphicsElement);
|
||||
WEB_PLATFORM_OBJECT(SVGLineElement, SVGGeometryElement);
|
||||
|
||||
public:
|
||||
virtual ~SVGLineElement() override = default;
|
||||
|
|
Loading…
Reference in a new issue