diff options
author | Bjoern Erik Nilsen <bjorn.nilsen@nokia.com> | 2009-03-19 14:31:56 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-04-15 10:19:04 (GMT) |
commit | 555ef800b922ddd48cbb2bee47276c88bf3778fb (patch) | |
tree | 1a94bb4364b6998047c3f5f1b402afa93b206db4 | |
parent | 53704a42dc50049806c27206ec361ab0c8cb01ed (diff) | |
download | Qt-555ef800b922ddd48cbb2bee47276c88bf3778fb.zip Qt-555ef800b922ddd48cbb2bee47276c88bf3778fb.tar.gz Qt-555ef800b922ddd48cbb2bee47276c88bf3778fb.tar.bz2 |
Fixes: Compile on funky scratchbox ARM compiler.
(cherry picked from commit 5910dbe6e7a024301d431102703f9abe323ebd13)
-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 d7970a5..5314fb8 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; |