summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qinputdevicemanager_p.h
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@qt.io>2017-01-12 16:06:28 +0100
committerLaszlo Agocs <laszlo.agocs@qt.io>2017-01-16 10:17:59 +0000
commit9ad4e651d26334f77297cc7cbfb413e3c22c391d (patch)
treec3aa0247a4c01ddbad2f7826de60f082bf683f0a /src/gui/kernel/qinputdevicemanager_p.h
parent7600cb6901f515edf6dd712f594927c1b43d61a8 (diff)
Fully qualify enum arguments in input device manager signals
Otherwise queued connections may complain about DeviceType not being registered. Change-Id: I1f93f8b34e78919e72ea99000c42da7024b6bdf3 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/gui/kernel/qinputdevicemanager_p.h')
-rw-r--r--src/gui/kernel/qinputdevicemanager_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qinputdevicemanager_p.h b/src/gui/kernel/qinputdevicemanager_p.h
index 11bbaae592..db9d0596b6 100644
--- a/src/gui/kernel/qinputdevicemanager_p.h
+++ b/src/gui/kernel/qinputdevicemanager_p.h
@@ -79,7 +79,7 @@ public:
void setCursorPos(const QPoint &pos);
signals:
- void deviceListChanged(DeviceType type);
+ void deviceListChanged(QInputDeviceManager::DeviceType type);
void cursorPositionChangeRequested(const QPoint &pos);
};