2023-07-04 06:37:36 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2023, Gregory Bertilson <zaggy1024@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-05 12:20:44 -03:00
|
|
|
#include <UI/Qt/EventLoopImplementationQt.h>
|
|
|
|
|
#include <UI/Qt/EventLoopImplementationQtEventTarget.h>
|
2023-07-04 06:37:36 -03:00
|
|
|
|
2025-12-05 12:20:44 -03:00
|
|
|
namespace Ladybird {
|
2023-07-04 06:37:36 -03:00
|
|
|
|
|
|
|
|
bool EventLoopImplementationQtEventTarget::event(QEvent* event)
|
|
|
|
|
{
|
|
|
|
|
return EventLoopManagerQt::event_target_received_event({}, event);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|