From 3e9caba478695443669ff880334ea69db6f764eb Mon Sep 17 00:00:00 2001 From: Marco Bubke Date: Mon, 22 Oct 2012 17:57:05 +0200 Subject: Change qml list interface Change-Id: I185c6f4cef6105544504324c1616b5995c219fe3 Reviewed-by: Christiaan Janssen --- src/particles/qquickparticlegroup.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/particles') diff --git a/src/particles/qquickparticlegroup.cpp b/src/particles/qquickparticlegroup.cpp index 63d54b0e6c..cae5423379 100644 --- a/src/particles/qquickparticlegroup.cpp +++ b/src/particles/qquickparticlegroup.cpp @@ -109,9 +109,9 @@ QQmlListProperty QQuickParticleGroup::particleChildren() { QQuickParticleSystem* system = qobject_cast(parent()); if (system) - return QQmlListProperty(this, 0, &QQuickParticleSystem::statePropertyRedirect); + return QQmlListProperty(this, 0, &QQuickParticleSystem::statePropertyRedirect, 0, 0, 0); else - return QQmlListProperty(this, 0, &delayedRedirect); + return QQmlListProperty(this, 0, &delayedRedirect, 0, 0, 0); } void QQuickParticleGroup::setSystem(QQuickParticleSystem* arg) -- cgit v1.2.3