fix: build error

This commit is contained in:
Barry 2022-06-08 08:53:20 +08:00
parent ed24afb1a0
commit a894944973

View file

@ -81,6 +81,7 @@ void GroupController::removeDevice(const QString &serial)
void GroupController::mouseEvent(const QMouseEvent *from, const QSize &frameSize, const QSize &showSize)
{
Q_UNUSED(frameSize);
for (const auto& serial : m_devices) {
if (true == isHost(serial)) {
continue;
@ -96,6 +97,7 @@ void GroupController::mouseEvent(const QMouseEvent *from, const QSize &frameSize
void GroupController::wheelEvent(const QWheelEvent *from, const QSize &frameSize, const QSize &showSize)
{
Q_UNUSED(frameSize);
for (const auto& serial : m_devices) {
if (true == isHost(serial)) {
continue;
@ -111,6 +113,7 @@ void GroupController::wheelEvent(const QWheelEvent *from, const QSize &frameSize
void GroupController::keyEvent(const QKeyEvent *from, const QSize &frameSize, const QSize &showSize)
{
Q_UNUSED(frameSize);
for (const auto& serial : m_devices) {
if (true == isHost(serial)) {
continue;