diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-10-13 11:24:12 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-13 11:30:36 -0700 |
commit | f5fbbfddb2013a068b6168310bc349102279caf8 (patch) | |
tree | 2837ff2791a68dfe9f0748cd48cad9b6b57a0b92 | |
parent | 39f9fb09dbce6684c7a6d4582418f7558361a11c (diff) | |
download | subsurface-f5fbbfddb2013a068b6168310bc349102279caf8.tar.gz |
Fix uninitialized variable
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/globe.cpp | 1 |
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) |