From: Alan Alpert Date: Fri, 9 Sep 2011 01:49:32 +0000 (+1000) Subject: Missed an example in previous name changes X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=907658a03494a371eae2f7e705de2fb71fed3c2f;p=konrad%2Fqtdeclarative.git 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 Reviewed-by: Michael Brasser --- diff --git a/examples/declarative/particles/custom/blurparticles.qml b/examples/declarative/particles/custom/blurparticles.qml index df0fa18..b054cfb 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