aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickimagebase_p_p.h
diff options
context:
space:
mode:
authorRobin Burchell <robin+qt@viroteck.net>2012-06-23 09:15:10 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-02 06:09:21 +0200
commitdfb39b0a78efcceb117b237d9f97b1d03a7174ba (patch)
tree32ae7904e0b61c0ffd3a2166457b67cf368d1dff /src/quick/items/qquickimagebase_p_p.h
parent2d1c7f6348943b9adbab3b940d17896c15636156 (diff)
Remove QQuickImageBase's explicitSourceSize.
The only case where this really did anything was in resetSourceSize() to avoid resetting if it had not been set already, but this logic is already in setSourceSize too, so it's really not useful. Done-with: John Brooks <john.brooks@dereferenced.net> Change-Id: Idb86686ea5ab711ceb2390e3703e0e04f7d537bb Reviewed-by: John Brooks <john.brooks@dereferenced.net> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
Diffstat (limited to 'src/quick/items/qquickimagebase_p_p.h')
-rw-r--r--src/quick/items/qquickimagebase_p_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/quick/items/qquickimagebase_p_p.h b/src/quick/items/qquickimagebase_p_p.h
index 7c2fce1e79..6e452387ae 100644
--- a/src/quick/items/qquickimagebase_p_p.h
+++ b/src/quick/items/qquickimagebase_p_p.h
@@ -69,7 +69,6 @@ public:
QQuickImageBasePrivate()
: status(QQuickImageBase::Null),
progress(0.0),
- explicitSourceSize(false),
async(false),
cache(true),
mirror(false)
@@ -81,7 +80,6 @@ public:
QUrl url;
qreal progress;
QSize sourcesize;
- bool explicitSourceSize : 1;
bool async : 1;
bool cache : 1;
bool mirror: 1;