summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaxissetting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/input/frontend/qaxissetting.cpp')
-rw-r--r--src/input/frontend/qaxissetting.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/input/frontend/qaxissetting.cpp b/src/input/frontend/qaxissetting.cpp
index 4a8f37785..d5ea709f6 100644
--- a/src/input/frontend/qaxissetting.cpp
+++ b/src/input/frontend/qaxissetting.cpp
@@ -40,8 +40,6 @@
#include "qaxissetting.h"
#include "qaxissetting_p.h"
-#include <Qt3DCore/qnodecreatedchange.h>
-
QT_BEGIN_NAMESPACE
namespace Qt3DInput {
@@ -226,19 +224,6 @@ void QAxisSetting::setSmoothEnabled(bool enabled)
emit smoothChanged(enabled);
}
-Qt3DCore::QNodeCreatedChangeBasePtr QAxisSetting::createNodeCreationChange() const
-{
- auto creationChange = Qt3DCore::QNodeCreatedChangePtr<QAxisSettingData>::create(this);
- auto &data = creationChange->data;
-
- Q_D(const QAxisSetting);
- data.deadZoneRadius = d->m_deadZoneRadius;
- data.axes = d->m_axes;
- data.smooth = d->m_smooth;
-
- return creationChange;
-}
-
} // namespace Qt3DInput
QT_END_NAMESPACE