diff options
author | Paolo Angelelli <paolo.angelelli@qt.io> | 2018-04-18 14:34:25 +0200 |
---|---|---|
committer | Jani Heikkinen <jani.heikkinen@qt.io> | 2018-04-22 06:34:13 +0000 |
commit | ecb6fbd235a8f23f0844bb2b926b78566c1aaa76 (patch) | |
tree | d26b0fca188570e72b9aaaaf8aabceedef923084 /src/location/labs/qmapcircleobject.cpp | |
parent | e86a2f2a437a8c0e820e85ae4498a391c76bb823 (diff) | |
download | qtlocation-ecb6fbd235a8f23f0844bb2b926b78566c1aaa76.tar.gz |
Fix QGeoMapObject handling in reference implementation
setVisible was neither changing the visibility nor
triggering repaint.
Pimpls weren't removing themselves in their destructors when
dynamically added/removed via QGeoMapObjectView
add/removeMapObject.
This patch also factors out the duplicated QGeoMapObject support
from QGeoTiledMapLabs and QGeoMapObjectsOverlay and moves it
into an own class, QGeoMapObjectQSGSupport.
To properly flush the scene graph nodes upon object removal,
a pointer to the QSGNode is added to the MapObject struct,
now moved inside QGeoMapObjectQSGSupport.
Change-Id: Ie8c6d54f8f340ba3867717d9620791d3fe8021cc
Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
Diffstat (limited to 'src/location/labs/qmapcircleobject.cpp')
-rw-r--r-- | src/location/labs/qmapcircleobject.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/location/labs/qmapcircleobject.cpp b/src/location/labs/qmapcircleobject.cpp index 735ece5c..d7f1d58f 100644 --- a/src/location/labs/qmapcircleobject.cpp +++ b/src/location/labs/qmapcircleobject.cpp @@ -278,7 +278,8 @@ void QMapCircleObject::setMap(QGeoMap *map) QGeoMapObject::setMap(map); // This is where the specialized pimpl gets created and injected if (!map) { - // Map was set, now it has ben re-set to NULL + // Map was set, now it has ben re-set to NULL, but not inside d_ptr. + // so m_map inside d_ptr can still be used to remove itself, inside the destructor. d_ptr = new QMapCircleObjectPrivateDefault(*d); // Old pimpl deleted implicitly by QExplicitlySharedDataPointer } |