mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Handle XSLT based imports correctly
XSLT conversions create V2 XML files, but we shouldn't abort when we parse those without having the user informed about the potential slowness - all XSLT based imports are slow, anyway. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
959077c66b
commit
6f7e3d04cb
3 changed files with 10 additions and 5 deletions
|
@ -574,6 +574,7 @@ void DiveLogImportDialog::loadFileContents(int value, whatChanged triggeredBy)
|
|||
|
||||
void DiveLogImportDialog::on_buttonBox_accepted()
|
||||
{
|
||||
imported_via_xslt = true;
|
||||
QStringList r = resultModel->result();
|
||||
if (ui->knownImports->currentText() != "Manual import") {
|
||||
for (int i = 0; i < fileNames.size(); ++i) {
|
||||
|
@ -592,9 +593,10 @@ void DiveLogImportDialog::on_buttonBox_accepted()
|
|||
specialCSV.contains(ui->knownImports->currentIndex()) ? CSVApps[ui->knownImports->currentIndex()].name.toUtf8().data() : "csv",
|
||||
ui->CSVUnits->currentIndex(),
|
||||
delta.toUtf8().data()
|
||||
) < 0)
|
||||
) < 0) {
|
||||
imported_via_xslt = false;
|
||||
return;
|
||||
|
||||
}
|
||||
// Seabear CSV stores NDL and TTS in Minutes, not seconds
|
||||
struct dive *dive = dive_table.dives[dive_table.nr - 1];
|
||||
for(int s_nr = 0 ; s_nr <= dive->dc.samples ; s_nr++) {
|
||||
|
@ -667,6 +669,7 @@ void DiveLogImportDialog::on_buttonBox_accepted()
|
|||
}
|
||||
process_dives(true, false);
|
||||
MainWindow::instance()->refreshDisplay();
|
||||
imported_via_xslt = false;
|
||||
}
|
||||
|
||||
TagDragDelegate::TagDragDelegate(QObject *parent) : QStyledItemDelegate(parent)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue