summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVolker Krause <volker.krause@kdab.com>2016-02-18 14:44:54 +0100
committerVolker Krause <volker.krause@kdab.com>2016-02-18 15:52:56 +0000
commit2da2781f81dbff435d3721175579703a7002a02c (patch)
treeeec08d20c5c81d936b91e0ff344a07712bdf2fc1 /tests
parentcfcdd103eaec7baa365cf8b6b0ca0f4e01bf0d91 (diff)
Rename childrenNodes to childNodes for API consistency.
Change-Id: Ia30ea97d33d77f10bbc0d1d8195c221bd0885a0b Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/commons/testpostmanarbiter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/render/commons/testpostmanarbiter.cpp b/tests/auto/render/commons/testpostmanarbiter.cpp
index f8878025f..3ec31e6e2 100644
--- a/tests/auto/render/commons/testpostmanarbiter.cpp
+++ b/tests/auto/render/commons/testpostmanarbiter.cpp
@@ -83,7 +83,7 @@ Qt3DCore::QAbstractPostman *TestArbiter::postman() const
void TestArbiter::assignArbiter(Qt3DCore::QNode *node)
{
Qt3DCore::QNodePrivate::get(node)->setArbiter(this);
- Q_FOREACH (Qt3DCore::QNode *n, node->childrenNodes())
+ Q_FOREACH (Qt3DCore::QNode *n, node->childNodes())
assignArbiter(n);
}