diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2014-12-31 22:09:34 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-31 12:12:20 -0800 |
commit | 5d68c7d4a19ca56405bc039808e7262eb3b18510 (patch) | |
tree | 84817aa58d7f8d7916e627102e87dc3ee821970e /qt-ui | |
parent | c1d9055948b319a2f918e1115fae13619dda3f5e (diff) | |
download | subsurface-5d68c7d4a19ca56405bc039808e7262eb3b18510.tar.gz |
Use unit selection for XSL transformation on CSV export
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/divelogexportdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/divelogexportdialog.cpp b/qt-ui/divelogexportdialog.cpp index d168ebe25..8f5d720e3 100644 --- a/qt-ui/divelogexportdialog.cpp +++ b/qt-ui/divelogexportdialog.cpp @@ -318,7 +318,7 @@ void DiveLogExportDialog::on_buttonBox_accepted() settings.endGroup(); // the non XSLT exports are called directly above, the XSLT based ons are called here if (!stylesheet.isEmpty()) - export_dives_xslt(filename.toUtf8(), ui->exportSelected->isChecked(), stylesheet.toUtf8()); + export_dives_xslt(filename.toUtf8(), ui->exportSelected->isChecked(), ui->CSVUnits_2->currentIndex(), stylesheet.toUtf8()); } } |