Skip to content

Commit

Permalink
fix duplicate method implementations for EventHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
mnutt committed Dec 16, 2024
1 parent 6b70eea commit 32f6acf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/WebCore/page/EventHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4742,6 +4742,7 @@ bool EventHandler::tabsToLinks(KeyboardEvent* event) const
return (event && eventInvertsTabsToLinksClientCallResult(*event)) ? !tabsToLinksClientCallResult : tabsToLinksClientCallResult;
}

#if !PLATFORM(QT)
bool EventHandler::tabsToAllFormControls(KeyboardEvent* event) const
{
#if PLATFORM(COCOA)
Expand Down Expand Up @@ -4771,6 +4772,7 @@ bool EventHandler::tabsToAllFormControls(KeyboardEvent* event) const
return true;
#endif
}
#endif // !PLATFORM(QT)

void EventHandler::defaultTextInputEventHandler(TextEvent& event)
{
Expand Down

0 comments on commit 32f6acf

Please sign in to comment.