diff options
Diffstat (limited to 'src/declarative/extra/qfxanimatedimageitem_p.h')
-rw-r--r-- | src/declarative/extra/qfxanimatedimageitem_p.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/declarative/extra/qfxanimatedimageitem_p.h b/src/declarative/extra/qfxanimatedimageitem_p.h index d743ba4..859f869 100644 --- a/src/declarative/extra/qfxanimatedimageitem_p.h +++ b/src/declarative/extra/qfxanimatedimageitem_p.h @@ -65,11 +65,12 @@ class QFxAnimatedImageItemPrivate : public QFxImagePrivate public: QFxAnimatedImageItemPrivate() - : playing(true), _movie(0) + : playing(true), paused(false), _movie(0) { } bool playing; + bool paused; QMovie *_movie; }; |