summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3d/items/quick3djoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick3d/quick3d/items/quick3djoint.cpp')
-rw-r--r--src/quick3d/quick3d/items/quick3djoint.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/quick3d/quick3d/items/quick3djoint.cpp b/src/quick3d/quick3d/items/quick3djoint.cpp
index baa79dd56..cfe77b0a7 100644
--- a/src/quick3d/quick3d/items/quick3djoint.cpp
+++ b/src/quick3d/quick3d/items/quick3djoint.cpp
@@ -15,17 +15,12 @@ Quick3DJoint::Quick3DJoint(QObject *parent)
}
/*!
- \qmlproperty list<Joint> Qt3DCore::Joint::childJoints
+ \qmlproperty list<Joint> Qt3D.Core::Joint::childJoints
\readonly
*/
QQmlListProperty<QJoint> Quick3DJoint::childJoints()
{
-#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
using qt_size_type = qsizetype;
-#else
- using qt_size_type = int;
-#endif
-
using ListContentType = QJoint;
auto appendFunction = [](QQmlListProperty<ListContentType> *list, ListContentType *joint) {
Quick3DJoint *jointExtension = qobject_cast<Quick3DJoint *>(list->object);