summaryrefslogtreecommitdiffstats
path: root/qt-ui/diveplanner.cpp
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-09 20:41:28 +0900
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-09 20:41:28 +0900
commit2a0f1fcf4e3a4edd1edb6f4477e83da4b2401eb1 (patch)
tree5b83d38bbd2a84484587dd9f2dcf2857ca709072 /qt-ui/diveplanner.cpp
parent487efb1ee91c5b7e648f31ef3700fae2c45753d4 (diff)
downloadsubsurface-2a0f1fcf4e3a4edd1edb6f4477e83da4b2401eb1.tar.gz
Remove left over qDebug() call
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/diveplanner.cpp')
-rw-r--r--qt-ui/diveplanner.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp
index ec7a8a21f..b9e138a2c 100644
--- a/qt-ui/diveplanner.cpp
+++ b/qt-ui/diveplanner.cpp
@@ -444,7 +444,6 @@ void DivePlannerPointsModel::loadFromDive(dive* d)
Q_FOREACH(const sample &s, backupSamples){
int o2 = 0, he = 0;
get_gas_from_events(&backupDive->dc, s.time.seconds, &o2, &he);
- qDebug() << "time / depth" << s.time.seconds << s.depth.mm << "o2/he" << o2 << he;
plannerModel->addStop(s.depth.mm, s.time.seconds, o2, he, 0);
}
}