summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qinputaspect.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/frontend/qinputaspect.cpp')
-rw-r--r--src/input/frontend/qinputaspect.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/frontend/qinputaspect.cpp b/src/input/frontend/qinputaspect.cpp
index 7656924e4..41318e399 100644
--- a/src/input/frontend/qinputaspect.cpp
+++ b/src/input/frontend/qinputaspect.cpp
@@ -207,14 +207,14 @@ QVector<QAspectJobPtr> QInputAspect::jobsToExecute(qint64 time)
return jobs;
}
-// Called in main Thread
-void QInputAspect::onInitialize(const QVariantMap &)
+// Called in the aspectThread, we would need this to be called in the main Thread
+void QInputAspect::onInitialize()
{
Q_D(QInputAspect);
Qt3DCore::QEventFilterService *eventService = d->services()->eventFilterService();
Q_ASSERT(eventService);
- // Create event source setter helper in the main thread
+ // TO DO: Create event source setter helper in the main thread
Qt3DInput::Input::EventSourceSetterHelper *helper =
new Qt3DInput::Input::EventSourceSetterHelper(eventService,
d->m_inputHandler.data());