diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2015-01-22 18:09:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-23 06:31:38 +1200 |
commit | 2e77e710a05bb6dde4cf4b29280da99a8571f66b (patch) | |
tree | 89276a4432a6905ac273422c0d8941e8ecc43db8 /qt-ui | |
parent | a4c3e9cdc012a922bba792860b2424aafc2e33fb (diff) | |
download | subsurface-2e77e710a05bb6dde4cf4b29280da99a8571f66b.tar.gz |
Use proper sample headings for Seabear CSV import
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp index b2b3bda5b..ecb3fa063 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -372,7 +372,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) QString firstLine = f.readLine(); if (firstLine.contains("SEABEAR")) { seabear = true; - firstLine = "Time;Depth;NDT;TTS;Ceiling;Temperature;Pressure"; + firstLine = "Sample time;Sample depth;Sample ndl;Sample tts;Sample stopdepth;Sample temperature;Sample pressure"; } QString separator = ui->CSVSeparator->currentText() == tr("Tab") ? "\t" : ui->CSVSeparator->currentText(); currColumns = firstLine.split(separator); |