diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-09-11 11:10:36 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-11 11:10:36 -0700 |
commit | af66ad9b6dcb331faf2073904c6c48813eb46c26 (patch) | |
tree | 770670dfc2c8153b0e42d4d11ee61e55c90f71c9 /qt-ui/divelogimportdialog.cpp | |
parent | c41810e5a54a6437830defc39d8f41cb2ebbcb98 (diff) | |
download | subsurface-af66ad9b6dcb331faf2073904c6c48813eb46c26.tar.gz |
CSV import: strip whitespace from column names before matching
In a user provided sample the last column name included "\r\n" which
prevented us from automatically matching that column.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogimportdialog.cpp')
-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 c21a6a18e..025d181d1 100644 --- a/qt-ui/divelogimportdialog.cpp +++ b/qt-ui/divelogimportdialog.cpp @@ -507,7 +507,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy) columnText.replace("2", "₂", Qt::CaseInsensitive); columnText.replace("cylinder", "cyl.", Qt::CaseInsensitive); } - int idx = provider->mymatch(columnText); + int idx = provider->mymatch(columnText.trimmed()); if (idx >= 0) { QString foundHeading = provider->data(provider->index(idx, 0), Qt::DisplayRole).toString(); provider->removeRow(idx); |