summaryrefslogtreecommitdiffstats
path: root/src/input/backend/updateaxisactionjob.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2016-04-15 14:19:12 +0200
committerSean Harmer <sean.harmer@kdab.com>2016-04-15 18:52:04 +0000
commit10f24b782f3856e5f5ddfc6710ab4b94facbddb5 (patch)
tree508b18c72066c6f1f0d67e739f1cf6c2c523238b /src/input/backend/updateaxisactionjob.cpp
parentd6cd4dd23baca11915afc8e1d69c0278a7ff1e7b (diff)
Remove QAbstractAggregateActionInput
Change-Id: I48109b0149cf16699f5d3a6cafbaec4555d4db0b Task-number: QTBUG-51493 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/input/backend/updateaxisactionjob.cpp')
-rw-r--r--src/input/backend/updateaxisactionjob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/backend/updateaxisactionjob.cpp b/src/input/backend/updateaxisactionjob.cpp
index b3da7535d..5117bba8b 100644
--- a/src/input/backend/updateaxisactionjob.cpp
+++ b/src/input/backend/updateaxisactionjob.cpp
@@ -122,7 +122,7 @@ bool UpdateAxisActionJob::processActionInput(const Qt3DCore::QNodeId actionInput
}
}
bool actionTriggered = false;
- Q_FOREACH (const Qt3DCore::QNodeId actionInputId, inputSequence->inputs()) {
+ Q_FOREACH (const Qt3DCore::QNodeId actionInputId, inputSequence->sequences()) {
if (processActionInput(actionInputId)){
actionTriggered |= inputSequence->actionTriggered(actionInputId, m_currentTime);
// Set the start time if it wasn't set before
@@ -142,7 +142,7 @@ bool UpdateAxisActionJob::processActionInput(const Qt3DCore::QNodeId actionInput
}
}
bool actionTriggered = false;
- Q_FOREACH (const Qt3DCore::QNodeId actionInputId, inputChord->inputs()) {
+ Q_FOREACH (const Qt3DCore::QNodeId actionInputId, inputChord->chords()) {
if (processActionInput(actionInputId)){
actionTriggered |= inputChord->actionTriggered(actionInputId);
if (startTime == 0)