aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/qthelper.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp
index 0673a78ce..cbfbd2f72 100644
--- a/core/qthelper.cpp
+++ b/core/qthelper.cpp
@@ -1518,6 +1518,19 @@ int parse_seabear_header(const char *filename, char **params, int pnr)
QString parseLine = f.readLine();
/*
+ * Parse dive number from Seabear CSV header
+ */
+
+ while ((parseLine = f.readLine().trimmed()).length() > 0 && !f.atEnd()) {
+ if (parseLine.contains("//DIVE NR: ")) {
+ qDebug() << "DEBGU: " << parseLine;
+ params[pnr++] = strdup("diveNro");
+ params[pnr++] = strdup(parseLine.replace(QString::fromLatin1("//DIVE NR: "), QString::fromLatin1("")).toUtf8().data());
+ break;
+ }
+ }
+
+ /*
* Parse header - currently only interested in sample
* interval and hardware version. If we have old format
* the interval value is missing from the header.