summaryrefslogtreecommitdiffstats
path: root/src/input/frontend/qaction.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2016-05-10 13:54:43 +0100
committerSean Harmer <sean.harmer@kdab.com>2016-05-10 19:09:49 +0000
commitbd9391529798c19f3e933ac6ecf468064cfe3346 (patch)
treed563f8ee8368b3e23609aabe3d36a4aa5a93fb05 /src/input/frontend/qaction.cpp
parenteace9e4ccce917a69d6bff5908651a22f14b7918 (diff)
Rename QNodeAddedPropertyChange -> QPropertyNodeAddedChange
Task-number: QTBUG-51494 Change-Id: I7f59bad66eb086e2249c580be2fd9f4bad159eb3 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/input/frontend/qaction.cpp')
-rw-r--r--src/input/frontend/qaction.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/frontend/qaction.cpp b/src/input/frontend/qaction.cpp
index 8bb088a91..3f46d7b75 100644
--- a/src/input/frontend/qaction.cpp
+++ b/src/input/frontend/qaction.cpp
@@ -41,7 +41,7 @@
#include "qaction_p.h"
#include <Qt3DCore/private/qnode_p.h>
#include <Qt3DCore/qpropertyupdatedchange.h>
-#include <Qt3DCore/qnodeaddedpropertychange.h>
+#include <Qt3DCore/qpropertynodeaddedchange.h>
#include <Qt3DCore/qnoderemovedpropertychange.h>
#include <Qt3DCore/qnodecreatedchange.h>
#include <Qt3DInput/qabstractactioninput.h>
@@ -121,7 +121,7 @@ void QAction::addInput(QAbstractActionInput *input)
input->setParent(this);
if (d->m_changeArbiter != nullptr) {
- const auto change = Qt3DCore::QNodeAddedPropertyChangePtr::create(id(), input);
+ const auto change = Qt3DCore::QPropertyNodeAddedChangePtr::create(id(), input);
change->setPropertyName("input");
d->notifyObservers(change);
}