ladybird/Libraries/LibWebView/EventLoop/EventLoopImplementationQtEventTarget.cpp

18 lines
410 B
C++
Raw Normal View History

/*
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWebView/EventLoop/EventLoopImplementationQt.h>
#include <LibWebView/EventLoop/EventLoopImplementationQtEventTarget.h>
namespace WebView {
bool EventLoopImplementationQtEventTarget::event(QEvent* event)
{
return EventLoopManagerQt::event_target_received_event({}, event);
}
}