aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2011-09-09 11:49:32 +1000
committerQt by Nokia <qt-info@nokia.com>2011-09-09 06:08:45 +0200
commit907658a03494a371eae2f7e705de2fb71fed3c2f (patch)
tree0a74f1c87983ae774dcca8b248cc480d14a3c3ec /examples
parent136b4627e213c9fa4ec0de1bce6baf6fba38f0cc (diff)
Missed an example in previous name changes
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>
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/particles/custom/blurparticles.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/declarative/particles/custom/blurparticles.qml b/examples/declarative/particles/custom/blurparticles.qml
index df0fa18971..b054cfbbb9 100644
--- a/examples/declarative/particles/custom/blurparticles.qml
+++ b/examples/declarative/particles/custom/blurparticles.qml
@@ -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