mirror of
https://github.com/barry-ran/QtScrcpy.git
synced 2025-07-18 06:51:29 +00:00
fix: build error
This commit is contained in:
parent
ed24afb1a0
commit
a894944973
1 changed files with 3 additions and 0 deletions
|
@ -81,6 +81,7 @@ void GroupController::removeDevice(const QString &serial)
|
||||||
|
|
||||||
void GroupController::mouseEvent(const QMouseEvent *from, const QSize &frameSize, const QSize &showSize)
|
void GroupController::mouseEvent(const QMouseEvent *from, const QSize &frameSize, const QSize &showSize)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(frameSize);
|
||||||
for (const auto& serial : m_devices) {
|
for (const auto& serial : m_devices) {
|
||||||
if (true == isHost(serial)) {
|
if (true == isHost(serial)) {
|
||||||
continue;
|
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)
|
void GroupController::wheelEvent(const QWheelEvent *from, const QSize &frameSize, const QSize &showSize)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(frameSize);
|
||||||
for (const auto& serial : m_devices) {
|
for (const auto& serial : m_devices) {
|
||||||
if (true == isHost(serial)) {
|
if (true == isHost(serial)) {
|
||||||
continue;
|
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)
|
void GroupController::keyEvent(const QKeyEvent *from, const QSize &frameSize, const QSize &showSize)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(frameSize);
|
||||||
for (const auto& serial : m_devices) {
|
for (const auto& serial : m_devices) {
|
||||||
if (true == isHost(serial)) {
|
if (true == isHost(serial)) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue