summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qabstractphysicaldevice.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-05-10 14:01:04 +0100
committerSean Harmer <sean.harmer@kdab.com>2016-05-10 19:09:54 +0000
commitb6ee562da9314fe2d737284ddef67567f1682619 (patch)
treef8aae4c1e0e2c4062201c97a0b9619a798916374 /src/input/frontend/qabstractphysicaldevice.cpp
parentbd9391529798c19f3e933ac6ecf468064cfe3346 (diff)
Rename QNodeRemovedPropertyChange -> QPropertyNodeRemovedChange
Task-number: QTBUG-51494 Change-Id: I1c7f1c680bc18c6201b790e96dc4023564837122 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/frontend/qabstractphysicaldevice.cpp')
-rw-r--r--src/input/frontend/qabstractphysicaldevice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/frontend/qabstractphysicaldevice.cpp b/src/input/frontend/qabstractphysicaldevice.cpp
index e445ae90d..82d721a73 100644
--- a/src/input/frontend/qabstractphysicaldevice.cpp
+++ b/src/input/frontend/qabstractphysicaldevice.cpp
@@ -43,7 +43,7 @@
#include <Qt3DInput/qaxissetting.h>
#include <Qt3DCore/qpropertyupdatedchange.h>
#include <Qt3DCore/qpropertynodeaddedchange.h>
-#include <Qt3DCore/qnoderemovedpropertychange.h>
+#include <Qt3DCore/qpropertynoderemovedchange.h>
#include <Qt3DCore/private/qnode_p.h>
QT_BEGIN_NAMESPACE
@@ -174,7 +174,7 @@ void QAbstractPhysicalDevice::removeAxisSetting(QAxisSetting *axisSetting)
Q_D(QAbstractPhysicalDevice);
if (axisSetting && d->m_axisSettings.contains(axisSetting)) {
if (d->m_changeArbiter) {
- const auto change = Qt3DCore::QNodeRemovedPropertyChangePtr::create(id(), axisSetting);
+ const auto change = Qt3DCore::QPropertyNodeRemovedChangePtr::create(id(), axisSetting);
change->setPropertyName("axisSettings");
d->notifyObservers(change);
}