diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-08-26 09:25:08 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2009-08-26 09:27:44 (GMT) |
commit | dad83c695e968d7c9fb0be2f4636cf14d34fb8a1 (patch) | |
tree | 4699bdb1a869d6a119e59f17d5217b25e4e504b5 /src/gui/effects/qgraphicseffect_p.h | |
parent | 796d7cc7dd96cea9875afe2e9cf814e8cb192aa1 (diff) | |
download | Qt-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.h | 2 |
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; |