summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-13 11:24:12 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-10-13 11:30:36 -0700
commitf5fbbfddb2013a068b6168310bc349102279caf8 (patch)
tree2837ff2791a68dfe9f0748cd48cad9b6b57a0b92
parent39f9fb09dbce6684c7a6d4582418f7558361a11c (diff)
downloadsubsurface-f5fbbfddb2013a068b6168310bc349102279caf8.tar.gz
Fix uninitialized variable
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-ui/globe.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/globe.cpp b/qt-ui/globe.cpp
index abd3362cb..966edda17 100644
--- a/qt-ui/globe.cpp
+++ b/qt-ui/globe.cpp
@@ -62,6 +62,7 @@ GlobeGPS::GlobeGPS(QWidget* parent) : MarbleWidget(parent), loadedDives(0)
setMinimumHeight(0);
setMinimumWidth(0);
+ editingDiveCoords = 0;
}
void GlobeGPS::mouseClicked(qreal lon, qreal lat, GeoDataCoordinates::Unit unit)