Whitespace fix
authorAlan Alpert <alan.alpert@nokia.com>
Wed, 31 Aug 2011 08:33:57 +0000 (18:33 +1000)
committerQt by Nokia <qt-info@nokia.com>
Thu, 8 Sep 2011 06:16:42 +0000 (08:16 +0200)
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 <qt_sanity_bot@ovi.com>
Reviewed-by: Martin Jones <martin.jones@nokia.com>
src/declarative/particles/qsgparticleaffector.cpp

index 067aa1d..4a3bba6 100644 (file)
@@ -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);
 }