mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:17:44 +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
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue