diff options
author | Bjoern Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-03-19 15:31:56 +0100 |
---|---|---|
committer | Andreas Aardal Hanssen <andreas.aardal.hanssen@nokia.com> | 2009-04-06 13:49:44 +0200 |
commit | 5910dbe6e7a024301d431102703f9abe323ebd13 (patch) | |
tree | 7d1b48e88d35a1d48561e6e24586f0b675252e12 /src/gui | |
parent | bd4b177e051852f0fb94df9c0ee2e512478e0d38 (diff) | |
download | qt4-tools-5910dbe6e7a024301d431102703f9abe323ebd13.tar.gz |
Fixes: Compile on funky scratchbox ARM compiler.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/graphicsview/qgraphicsitem_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/graphicsview/qgraphicsitem_p.h b/src/gui/graphicsview/qgraphicsitem_p.h index df07b8746a..98e7c136e5 100644 --- a/src/gui/graphicsview/qgraphicsitem_p.h +++ b/src/gui/graphicsview/qgraphicsitem_p.h @@ -249,7 +249,7 @@ public: inline bool isInvisible() const { return !visible || (hasEffectiveOpacity - && qFuzzyCompare(q_func()->effectiveOpacity() + 1.0, qreal(1.0))); + && qFuzzyCompare(q_func()->effectiveOpacity() + 1, qreal(1.0))); } QPainterPath cachedClipPath; |