ladybird/UI/Qt/EventLoopImplementationQtEventTarget.cpp
2024-11-10 12:50:45 +01:00

16 lines
336 B
C++

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