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

LibWeb: Update incorrect WEB_PLATFORM_OBJECT base class for two classes

This commit is contained in:
Andreas Kling 2022-11-29 20:45:09 +01:00
parent b1f8c5879f
commit 00a98c24a2
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ struct StaticRangeInit {
};
class StaticRange final : public AbstractRange {
WEB_PLATFORM_OBJECT(StaticRange, JS::Object);
WEB_PLATFORM_OBJECT(StaticRange, AbstractRange);
public:
static WebIDL::ExceptionOr<StaticRange*> construct_impl(JS::Realm&, StaticRangeInit& init);