diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2017-05-07 15:54:36 +0300 |
---|---|---|
committer | Miika Turkia <miika.turkia@gmail.com> | 2017-05-07 16:00:52 +0300 |
commit | d851549d9ce33f7a9c2329ab19efbf40dd56b8de (patch) | |
tree | 0376a2b18dd0136b89f25afff43bea8ff5187c27 /core | |
parent | 221f67206b847373aa768fb201aa88410aa59801 (diff) | |
download | subsurface-d851549d9ce33f7a9c2329ab19efbf40dd56b8de.tar.gz |
Remove debug output
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/qthelper.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/qthelper.cpp b/core/qthelper.cpp index b597921b6..e5a046a05 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -1523,7 +1523,6 @@ int parse_seabear_header(const char *filename, char **params, int pnr) 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; |