From 907658a03494a371eae2f7e705de2fb71fed3c2f Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Fri, 9 Sep 2011 11:49:32 +1000 Subject: [PATCH] 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 --- .../declarative/particles/custom/blurparticles.qml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 -- 1.7.2.5