summaryrefslogtreecommitdiffstats
path: root/src/input/backend/axisaccumulator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/backend/axisaccumulator.cpp')
-rw-r--r--src/input/backend/axisaccumulator.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/input/backend/axisaccumulator.cpp b/src/input/backend/axisaccumulator.cpp
index 815c25cb0..edc282bec 100644
--- a/src/input/backend/axisaccumulator.cpp
+++ b/src/input/backend/axisaccumulator.cpp
@@ -38,10 +38,11 @@
****************************************************************************/
#include "axisaccumulator_p.h"
-#include <Qt3DInput/private/qaxisaccumulator_p.h>
-#include <Qt3DInput/private/inputmanagers_p.h>
+
#include <Qt3DCore/qpropertyupdatedchange.h>
-#include <Qt3DCore/private/qpropertyupdatedchangebase_p.h>
+
+#include <Qt3DInput/private/inputmanagers_p.h>
+#include <Qt3DInput/private/qaxisaccumulator_p.h>
QT_BEGIN_NAMESPACE
@@ -88,7 +89,6 @@ void AxisAccumulator::setValue(float value)
e->setDeliveryFlags(Qt3DCore::QSceneChange::DeliverToAll);
e->setPropertyName("value");
e->setValue(m_value);
- Qt3DCore::QPropertyUpdatedChangeBasePrivate::get(e.data())->m_isFinal = true;
notifyObservers(e);
}
}
@@ -103,7 +103,6 @@ void AxisAccumulator::setVelocity(float velocity)
e->setDeliveryFlags(Qt3DCore::QSceneChange::DeliverToAll);
e->setPropertyName("velocity");
e->setValue(m_velocity);
- Qt3DCore::QPropertyUpdatedChangeBasePrivate::get(e.data())->m_isFinal = true;
notifyObservers(e);
}
}