diff options
author | Thiago Macieira <thiago.macieira@intel.com> | 2014-11-23 07:49:18 -0800 |
---|---|---|
committer | Alex Blasche <alexander.blasche@theqtcompany.com> | 2014-12-11 13:39:18 +0100 |
commit | bc9773063004dd99fc0da031721a0a25da26244f (patch) | |
tree | a28cc67007cbf7ec3818d5253466b28d8e3a3b00 | |
parent | 3c6693ee7f431320b2500c9c4440bb649ed50c89 (diff) | |
download | qtlocation-bc9773063004dd99fc0da031721a0a25da26244f.tar.gz |
Remove unused private member
Found by Clang 3.6:
qdeclarativegeomapquickitem_p.h:92:10: warning: private field 'inUpdate_' is not used [-Wunused-private-field]
Change-Id: Ifeb46931cf1a322a667594a2dd3c7fe74d89b171
Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
-rw-r--r-- | src/imports/location/qdeclarativegeomapquickitem.cpp | 2 | ||||
-rw-r--r-- | src/imports/location/qdeclarativegeomapquickitem_p.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/imports/location/qdeclarativegeomapquickitem.cpp b/src/imports/location/qdeclarativegeomapquickitem.cpp index 8a2b5588..89fc47f2 100644 --- a/src/imports/location/qdeclarativegeomapquickitem.cpp +++ b/src/imports/location/qdeclarativegeomapquickitem.cpp @@ -112,7 +112,7 @@ QT_BEGIN_NAMESPACE */ QDeclarativeGeoMapQuickItem::QDeclarativeGeoMapQuickItem(QQuickItem *parent) -: QDeclarativeGeoMapItemBase(parent), zoomLevel_(0.0), inUpdate_(false), +: QDeclarativeGeoMapItemBase(parent), zoomLevel_(0.0), mapAndSourceItemSet_(false), updatingGeometry_(false) { setFlag(ItemHasContents, true); diff --git a/src/imports/location/qdeclarativegeomapquickitem_p.h b/src/imports/location/qdeclarativegeomapquickitem_p.h index 35736fca..5ca44b1e 100644 --- a/src/imports/location/qdeclarativegeomapquickitem_p.h +++ b/src/imports/location/qdeclarativegeomapquickitem_p.h @@ -89,7 +89,6 @@ private: QQuickItem *opacityContainer_; QPointF anchorPoint_; qreal zoomLevel_; - bool inUpdate_; bool mapAndSourceItemSet_; bool updatingGeometry_; }; |