summaryrefslogtreecommitdiffstats
path: root/tests/auto/render/qsortpolicy
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 /tests/auto/render/qsortpolicy
parentbd9391529798c19f3e933ac6ecf468064cfe3346 (diff)
Rename QNodeRemovedPropertyChange -> QPropertyNodeRemovedChange
Task-number: QTBUG-51494 Change-Id: I1c7f1c680bc18c6201b790e96dc4023564837122 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'tests/auto/render/qsortpolicy')
-rw-r--r--tests/auto/render/qsortpolicy/tst_qsortpolicy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/render/qsortpolicy/tst_qsortpolicy.cpp b/tests/auto/render/qsortpolicy/tst_qsortpolicy.cpp
index 375e670f8..cee977790 100644
--- a/tests/auto/render/qsortpolicy/tst_qsortpolicy.cpp
+++ b/tests/auto/render/qsortpolicy/tst_qsortpolicy.cpp
@@ -31,7 +31,7 @@
#include <Qt3DCore/private/qscene_p.h>
#include <Qt3DCore/qentity.h>
#include <Qt3DCore/qpropertynodeaddedchange.h>
-#include <Qt3DCore/qnoderemovedpropertychange.h>
+#include <Qt3DCore/qpropertynoderemovedchange.h>
#include <Qt3DCore/private/qnodecreatedchangegenerator_p.h>
#include <Qt3DRender/qsortpolicy.h>
@@ -134,7 +134,7 @@ private Q_SLOTS:
// THEN
QCOMPARE(arbiter.events.size(), 1);
- Qt3DCore::QNodeRemovedPropertyChangePtr removeChange = arbiter.events.first().staticCast<Qt3DCore::QNodeRemovedPropertyChange>();
+ Qt3DCore::QPropertyNodeRemovedChangePtr removeChange = arbiter.events.first().staticCast<Qt3DCore::QPropertyNodeRemovedChange>();
QCOMPARE(removeChange->propertyName(), "sortType");
QCOMPARE(removeChange->subjectId(), sortPolicy->id());
QCOMPARE(removeChange->removedValue().value<Qt3DRender::QSortPolicy::SortType>(), sortType1);