summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Vrátil <daniel.vratil@kdab.com>2016-10-31 17:40:54 +0100
committerDaniel Vrátil <daniel.vratil@codereview.qt-project.org>2016-11-01 10:06:29 +0000
commitd2a033764ecd80f0ab242abe5484d7c1a48bf618 (patch)
treeac5af691fb2f7866a79328d0b0217d0d2416813d
parent799f10bfa9cccbf9a5628c19df9ce28205754b69 (diff)
Fix NodeInstantiator::objectAdded docs
The 2nd argument name in the documentation was different from the actual name. Change-Id: I626f2ab4258d977a4679bf1750dace3b23b65dd5 Reviewed-by: Paul Lemire <paul.lemire@kdab.com> Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
-rw-r--r--src/quick3d/quick3d/items/quick3dnodeinstantiator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick3d/quick3d/items/quick3dnodeinstantiator.cpp b/src/quick3d/quick3d/items/quick3dnodeinstantiator.cpp
index b95290a3c..90b6d681a 100644
--- a/src/quick3d/quick3d/items/quick3dnodeinstantiator.cpp
+++ b/src/quick3d/quick3d/items/quick3dnodeinstantiator.cpp
@@ -247,10 +247,10 @@ Quick3DNodeInstantiator::Quick3DNodeInstantiator(QNode *parent)
}
/*!
- \qmlsignal Qt3D.Core::NodeInstantiator::objectAdded(int index, QtObject node)
+ \qmlsignal Qt3D.Core::NodeInstantiator::objectAdded(int index, QtObject object)
This signal is emitted when a node is added to the NodeInstantiator. The \a index
- parameter holds the index which the node has been given, and the \a node
+ parameter holds the index which the node has been given, and the \a object
parameter holds the \l Node that has been added.
The corresponding handler is \c onNodeAdded.