diff options
Diffstat (limited to 'src/declarative/fx/qfximage_p.h')
-rw-r--r-- | src/declarative/fx/qfximage_p.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/declarative/fx/qfximage_p.h b/src/declarative/fx/qfximage_p.h index fbb4c44..8227ce4 100644 --- a/src/declarative/fx/qfximage_p.h +++ b/src/declarative/fx/qfximage_p.h @@ -76,7 +76,7 @@ public: #if defined(QFX_RENDER_OPENGL) _texDirty(true), #endif - status(QFxImage::Idle), reply(0) + status(QFxImage::Idle), sciReply(0), progress(0.0) { } @@ -95,10 +95,10 @@ public: } QFxScaleGrid *_scaleGrid; - bool _tiled; QFxPixmap _pix; - bool _smooth; - bool _opaque; + bool _tiled : 1; + bool _smooth : 1; + bool _opaque : 1; #if defined(QFX_RENDER_OPENGL) void checkDirty(); bool _texDirty; @@ -109,7 +109,9 @@ public: QString source; QUrl url; QUrl sciurl; - QNetworkReply *reply; + QNetworkReply *sciReply; + QPointer<QNetworkReply> reply; + qreal progress; }; QT_END_NAMESPACE |