aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-08-31 18:33:57 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-08 08:16:42 +0200
commit63982ebb2cd0aa28c456e25cc9edb400b5b881d9 (patch)
treee72bf8eb44a22b5dd27a9e252bde932666ba0dbc
parent65d78a51a643e3ad65a00e37e9271da07649ccbc (diff)
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 <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
-rw-r--r--src/declarative/particles/qsgparticleaffector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/particles/qsgparticleaffector.cpp b/src/declarative/particles/qsgparticleaffector.cpp
index 067aa1d84b..4a3bba6e6d 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);
}