From c6a70060edb7840c4f186e3d92f172259843a1f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9nard?= Date: Mon, 21 Jun 2010 13:17:45 +0000 Subject: [PATCH] Usual ARM compilation fixes. svn path=/trunk/KDE/kdelibs/; revision=1140767 --- private/effects/ripple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/private/effects/ripple.cpp b/private/effects/ripple.cpp index 2984d4d93..2f8526287 100644 --- a/private/effects/ripple.cpp +++ b/private/effects/ripple.cpp @@ -134,7 +134,7 @@ void RippleEffect::draw(QPainter *painter) } int x, y; - if (qFuzzyCompare(m_opacity, 0.0)) { + if (qFuzzyCompare(m_opacity, qreal(0.0))) { for (x = 0; x < currentImage.width(); ++x) { memset(m_currentMap[x], 0, sizeof(int) * currentImage.height()); memset(m_previousMap[x], 0, sizeof(int) * currentImage.height());