Fix order of CSV field separators

Unfortunately we are referencing these separators with index, so they
need to be on same order as used in XSLT files.

Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Miika Turkia 2015-01-22 11:33:10 +02:00 committed by Dirk Hohndel
parent c1f716614f
commit ffdb78a3dc

View file

@ -323,7 +323,7 @@ DiveLogImportDialog::DiveLogImportDialog(QStringList fn, QWidget *parent) : QDia
for (int i = 0; !CSVApps[i].name.isNull(); ++i)
ui->knownImports->addItem(CSVApps[i].name);
ui->CSVSeparator->addItems( QStringList() << tr("Tab") << ";" << ",");
ui->CSVSeparator->addItems( QStringList() << tr("Tab") << "," << ";");
loadFileContents(-1, INITIAL);