diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-11-12 11:20:23 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-12 11:20:23 +0900 |
commit | 94222fbe4905ea3f0e982b61a69290439c7f4e2d (patch) | |
tree | 2f36152df069dbb509e44a9cee51a72aeba6a2f4 | |
parent | ad4812c22e5ed9281f8a6cf4754c145a3751446a (diff) | |
download | subsurface-94222fbe4905ea3f0e982b61a69290439c7f4e2d.tar.gz |
Remove some debug output
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/diveplanner.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index c7aea75e7..27c80fd03 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -44,7 +44,6 @@ QString gasToStr(const int o2Permille, const int hePermille) { QString result = is_air(o2Permille, hePermille) ? QObject::tr("AIR") : he == 0 ? QString("EAN%1").arg(o2, 2, 10, QChar('0')) : QString("%1/%2").arg(o2).arg(he); - qDebug() << o2 << he << result; return result; } @@ -466,7 +465,6 @@ QStringList& DivePlannerPointsModel::getGasList() list.push_back(gasToStr(cyl->gasmix.o2.permille, cyl->gasmix.he.permille)); } } - qDebug() << list; return list; } @@ -485,7 +483,6 @@ void DivePlannerGraphics::selectGas(const QModelIndex& index) QString gasSelected = gasListView->model()->data(index, Qt::DisplayRole).toString(); int idx = gases.indexOf(currentGasChoice); plannerModel->setData(plannerModel->index(idx, DivePlannerPointsModel::GAS), gasSelected); - qDebug() << "gas selected:" << gasSelected; gasListView->hide(); } |