Missed an example in previous name changes
authorAlan Alpert <alan.alpert@nokia.com>
Fri, 9 Sep 2011 01:49:32 +0000 (11:49 +1000)
committerQt by Nokia <qt-info@nokia.com>
Fri, 9 Sep 2011 04:08:45 +0000 (06:08 +0200)
One non-essential varaible still had the old name, leading to a
non-fatal warning. It is now rectified.

Change-Id: I4ebcf92b3521aeff92e4da89f41b8c81c2f6ab96
Reviewed-on: http://codereview.qt-project.org/4494
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
examples/declarative/particles/custom/blurparticles.qml

index df0fa18..b054cfb 100644 (file)
@@ -80,7 +80,7 @@ Rectangle{
                 highp float fadeOut = 1. - max(0., min((t - 0.75) * 4., 1.));
 
                 fFade = fadeIn * fadeOut * qt_Opacity;
-                fBlur = max(0.2 * t, t * r);
+                fBlur = max(0.2 * t, t * qt_ParticleR);
             }
         "
         property variant source: theSource