From 63982ebb2cd0aa28c456e25cc9edb400b5b881d9 Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Wed, 31 Aug 2011 18:33:57 +1000 Subject: [PATCH] Whitespace fix In this case, the extra space makes it fail to find the signal. Change-Id: I18cc47e1bf979150f2fbf71edbc93aaf4b5c73c7 Reviewed-on: http://codereview.qt-project.org/3922 Reviewed-by: Qt Sanity Bot Reviewed-by: Martin Jones --- src/declarative/particles/qsgparticleaffector.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/declarative/particles/qsgparticleaffector.cpp b/src/declarative/particles/qsgparticleaffector.cpp index 067aa1d..4a3bba6 100644 --- a/src/declarative/particles/qsgparticleaffector.cpp +++ b/src/declarative/particles/qsgparticleaffector.cpp @@ -131,7 +131,7 @@ QSGParticleAffector::QSGParticleAffector(QSGItem *parent) : bool QSGParticleAffector::isAffectConnected() { - static int idx = QObjectPrivate::get(this)->signalIndex("affectParticle(QDeclarativeV8Handle, qreal)"); + static int idx = QObjectPrivate::get(this)->signalIndex("affectParticle(QDeclarativeV8Handle,qreal)"); return QObjectPrivate::get(this)->isSignalConnected(idx); } -- 1.7.2.5