summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wasm/qwasmeventdispatcher.cpp
blob: 9d65bd58f874c5f8836ab23359f70e0e6d1eb981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include "qwasmeventdispatcher.h"

#include <QtGui/qpa/qwindowsysteminterface.h>

// Note: All event dispatcher functionality is implemented in QEventDispatcherWasm
// in QtCore, except for processWindowSystemEvents() below which uses API from QtGui.
void QWasmEventDispatcher::processWindowSystemEvents(QEventLoop::ProcessEventsFlags flags)
{
    QWindowSystemInterface::sendWindowSystemEvents(flags);
}