diff options
author | Johannes Zellner <[email protected]> | 2012-03-12 17:52:27 +0100 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-03-14 09:45:07 +0100 |
commit | 3a47c13fa655674aa1d3ff8e82bf67b83d42b285 (patch) | |
tree | d9fcb13583336b5e6665ec1d42fdb193d044fb80 /src/plugins/generic/evdevmouse/main.cpp | |
parent | f4dfb55243cccf8bbf4176fee856f945f8564171 (diff) |
remove obsolete qudevhelper and adopt mouse and touch plugins
The QUDevHelper class is now replaced by QUDeviceHelper class.
All evdev input plugins are using the new udev helper now to enable
hotplugin for keyboard and mouse input.
EvdevTouch plugin still only uses the first detected device by udev,
this cannot be tested on my side, due to the lack of multiple touch input devices.
Change-Id: I01a4cfe1a80000bfb27c67a2f53faf560906b73c
Reviewed-by: Laszlo Agocs <[email protected]>
Diffstat (limited to 'src/plugins/generic/evdevmouse/main.cpp')
-rw-r--r-- | src/plugins/generic/evdevmouse/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/generic/evdevmouse/main.cpp b/src/plugins/generic/evdevmouse/main.cpp index 47a4ddf56b7..b49c183d7b0 100644 --- a/src/plugins/generic/evdevmouse/main.cpp +++ b/src/plugins/generic/evdevmouse/main.cpp @@ -40,7 +40,7 @@ ****************************************************************************/ #include <qgenericplugin_qpa.h> -#include "qevdevmouse.h" +#include "qevdevmousemanager.h" QT_BEGIN_NAMESPACE @@ -71,7 +71,7 @@ QObject* QEvdevMousePlugin::create(const QString &key, const QString &specification) { if (!key.compare(QLatin1String("EvdevMouse"), Qt::CaseInsensitive)) - return new QEvdevMouseHandler(key, specification); + return new QEvdevMouseManager(key, specification); return 0; } |