summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qxcbscrollingdevice.cpp
blob: 540d0877e51052f28943f6974e17dcea36055d4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default

#include "qxcbscrollingdevice_p.h"

QT_BEGIN_NAMESPACE

QXcbScrollingDevicePrivate::QXcbScrollingDevicePrivate(const QString &name, qint64 id, QInputDevice::Capabilities caps,
                                   int buttonCount, const QString &seatName)
    : QPointingDevicePrivate(name, id, QInputDevice::DeviceType::Mouse, QPointingDevice::PointerType::Generic,
                             caps, 1, buttonCount, seatName)
{
}

QT_END_NAMESPACE

#include "moc_qxcbscrollingdevice_p.cpp"