summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaction.cpp
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2019-10-07 17:00:50 +0100
committerMike Krus <mike.krus@kdab.com>2019-10-09 09:58:56 +0100
commit5eff77db3ade7f407de62952ed0a79371f328096 (patch)
tree5fabf3c187eb3a026e7ef5ed8c70e6361afe9bfa /src/input/frontend/qaction.cpp
parentd174057b01cbe8887b25880697ae33428c88cc6c (diff)
Update UpdateAxisActionJob to use direct sync
Change-Id: I227e1a5005a9001ac49d8b29daeb23be25fda53b Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/frontend/qaction.cpp')
-rw-r--r--src/input/frontend/qaction.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/input/frontend/qaction.cpp b/src/input/frontend/qaction.cpp
index 4dc0493b0..8eccec9e4 100644
--- a/src/input/frontend/qaction.cpp
+++ b/src/input/frontend/qaction.cpp
@@ -149,16 +149,6 @@ QVector<QAbstractActionInput *> QAction::inputs() const
return d->m_inputs;
}
-/*! \internal */
-void QAction::sceneChangeEvent(const Qt3DCore::QSceneChangePtr &change)
-{
- Q_D(QAction);
- Qt3DCore::QPropertyUpdatedChangePtr e = qSharedPointerCast<Qt3DCore::QPropertyUpdatedChange>(change);
- if (e->type() == Qt3DCore::PropertyUpdated && e->propertyName() == QByteArrayLiteral("active")) {
- d->setActive(e->value().toBool());
- }
-}
-
Qt3DCore::QNodeCreatedChangeBasePtr QAction::createNodeCreationChange() const
{
auto creationChange = Qt3DCore::QNodeCreatedChangePtr<QActionData>::create(this);