aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/divelogimportdialog.cpp
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2015-01-31 18:46:57 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-31 10:14:48 -0800
commitb01f14efab664ea66e07be95f38511a69dcaf8b7 (patch)
tree016f1322f1bc4f71485a659177a81de1bedb7003 /qt-ui/divelogimportdialog.cpp
parent7a6b91a67ef64f7b29c511c87489b9932a13ae40 (diff)
downloadsubsurface-b01f14efab664ea66e07be95f38511a69dcaf8b7.tar.gz
Fix maximum depth on CSV import
Commit d329420d5549e02e32ff4673513329f9dc30650f changed the name of the header from "Max depth" to "Max. depth", so we need to use that in the code as well. (The dive profile is not drawn if we do not have max depth.) Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.cpp')
-rw-r--r--qt-ui/divelogimportdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp
index 34ad36aa2..c79b9df95 100644
--- a/qt-ui/divelogimportdialog.cpp
+++ b/qt-ui/divelogimportdialog.cpp
@@ -579,7 +579,7 @@ void DiveLogImportDialog::on_buttonBox_accepted()
r.indexOf(tr("Duration")),
r.indexOf(tr("Location")),
r.indexOf(tr("GPS")),
- r.indexOf(tr("Max depth")),
+ r.indexOf(tr("Max. depth")),
r.indexOf(tr("Mean depth")),
r.indexOf(tr("Divemaster")),
r.indexOf(tr("Buddy")),