summaryrefslogtreecommitdiffstats
path: root/src/input/frontend
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire350@gmail.com>2015-11-29 16:36:59 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-11-30 14:36:08 +0000
commit5bb01a42fdc8bb5f1f297019e67fdce8f64cfba4 (patch)
tree52f4ead000f93de6daf9c9876dca1c80a85aef3e /src/input/frontend
parent22bb6b7644d42bfd16351c2de8e40828baa422db (diff)
QInputAspect: add a comments regarding QInputDeviceIntegration::initialize
Change-Id: I7a5f20fdd4704a0229fed66c350f0a99490c4908 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/frontend')
-rw-r--r--src/input/frontend/qinputaspect.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/input/frontend/qinputaspect.cpp b/src/input/frontend/qinputaspect.cpp
index 04f4f9dd3..4c2b0e4de 100644
--- a/src/input/frontend/qinputaspect.cpp
+++ b/src/input/frontend/qinputaspect.cpp
@@ -122,6 +122,10 @@ void QInputAspect::loadInputDevicePlugins()
Qt3DInput::QInputDeviceIntegration *integration = QInputDeviceIntegrationFactory::create(key, QStringList());
if (integration != Q_NULLPTR) {
d->m_inputDeviceIntegrations.push_back(integration);
+ // Initialize will allow the InputDeviceIntegration to
+ // register their frontend / backend types,
+ // create their managers
+ // launch a thread to listen to the actual physical device....
integration->initialize(this);
}
}