mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-10 18:10:56 +09:00
LibWeb: Remove no-op impl() methods from the WEB_PLATFORM_OBJECT macro
These are leftovers from when wrapper objects still had an internal implementation, which is no longer the case.
This commit is contained in:
parent
2cab2a8e8f
commit
6055b0e850
Notes:
sideshowbarker
2024-07-18 05:01:22 +09:00
Author: https://github.com/linusg
Commit: 6055b0e850
Pull-request: https://github.com/SerenityOS/serenity/pull/15310
Reviewed-by: https://github.com/awesomekling ✅
14 changed files with 28 additions and 39 deletions
|
@ -548,8 +548,7 @@ void EventTarget::activate_event_handler(FlyString const& name, HTML::EventHandl
|
|||
// The argument must be an object and it must be an Event.
|
||||
auto event_wrapper_argument = vm.argument(0);
|
||||
VERIFY(event_wrapper_argument.is_object());
|
||||
auto& event_wrapper = verify_cast<DOM::Event>(event_wrapper_argument.as_object());
|
||||
auto& event = event_wrapper.impl();
|
||||
auto& event = verify_cast<DOM::Event>(event_wrapper_argument.as_object());
|
||||
|
||||
TRY(event_target->process_event_handler_for_event(name, event));
|
||||
return JS::js_undefined();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue