mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
cleanup: Uninitialized pointer field
CID: 208335 Mainly to silence Coverity, as I do not believe this caused any problem. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
eabba1f071
commit
92a5e0644e
1 changed files with 3 additions and 0 deletions
|
@ -17,6 +17,9 @@
|
|||
MapWidgetHelper::MapWidgetHelper(QObject *parent) : QObject(parent)
|
||||
{
|
||||
m_mapLocationModel = new MapLocationModel(this);
|
||||
m_smallCircleRadius = SMALL_CIRCLE_RADIUS_PX;
|
||||
m_map = nullptr;
|
||||
m_editMode = false;
|
||||
connect(m_mapLocationModel, SIGNAL(selectedLocationChanged(MapLocation *)),
|
||||
this, SLOT(selectedLocationChanged(MapLocation *)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue