summaryrefslogtreecommitdiffstats
path: root/src/gui/effects/qgraphicseffect_p.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@nokia.com>2009-08-26 09:25:08 (GMT)
committerJoerg Bornemann <joerg.bornemann@nokia.com>2009-08-26 09:27:44 (GMT)
commitdad83c695e968d7c9fb0be2f4636cf14d34fb8a1 (patch)
tree4699bdb1a869d6a119e59f17d5217b25e4e504b5 /src/gui/effects/qgraphicseffect_p.h
parent796d7cc7dd96cea9875afe2e9cf814e8cb192aa1 (diff)
downloadQt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.zip
Qt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.tar.gz
Qt-dad83c695e968d7c9fb0be2f4636cf14d34fb8a1.tar.bz2
fix warnings on Windows CE
Lots of warnings in the qreal == float case. Some Q_UNUSED added. Reviewed-by: thartman
Diffstat (limited to 'src/gui/effects/qgraphicseffect_p.h')
-rw-r--r--src/gui/effects/qgraphicseffect_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/effects/qgraphicseffect_p.h b/src/gui/effects/qgraphicseffect_p.h
index 175bd99..6ce5cda 100644
--- a/src/gui/effects/qgraphicseffect_p.h
+++ b/src/gui/effects/qgraphicseffect_p.h
@@ -164,7 +164,7 @@ class QGraphicsOpacityEffectPrivate : public QGraphicsEffectPrivate
{
Q_DECLARE_PUBLIC(QGraphicsOpacityEffect)
public:
- QGraphicsOpacityEffectPrivate() : opacity(0.7) {}
+ QGraphicsOpacityEffectPrivate() : opacity(qreal(0.7)) {}
~QGraphicsOpacityEffectPrivate() {}
qreal opacity;