diff options
author | jan Iversen <jan@casacondor.com> | 2019-11-21 18:04:36 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-12-03 21:30:39 -0800 |
commit | f9a36733c612cb754de2eb4c7aecb1f904f6f52d (patch) | |
tree | 12d908e0de4e316a2980e625f9ba5e468551eb6f /desktop-widgets/divelogexportdialog.h | |
parent | 4e690119ef38b54d59d87fde6420d796939e0804 (diff) | |
download | subsurface-f9a36733c612cb754de2eb4c7aecb1f904f6f52d.tar.gz |
desktop-widgets: move export functions to shared class
Remove export functions from desktop-widgets and move to core
in order to share with mobile version
Signed-off-by: Jan Iversen <jan@casacondor.com>
Diffstat (limited to 'desktop-widgets/divelogexportdialog.h')
-rw-r--r-- | desktop-widgets/divelogexportdialog.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/desktop-widgets/divelogexportdialog.h b/desktop-widgets/divelogexportdialog.h index ce6106be0..c1d7d8b98 100644 --- a/desktop-widgets/divelogexportdialog.h +++ b/desktop-widgets/divelogexportdialog.h @@ -4,7 +4,6 @@ #include <QDialog> #include <QTextStream> -#include <QFuture> #include "core/statistics.h" class QAbstractButton; @@ -28,14 +27,9 @@ slots: void on_exportGroup_buttonClicked(QAbstractButton *); private: - QFuture<int> future; Ui::DiveLogExportDialog *ui; void showExplanation(); void exportHtmlInit(const QString &filename); - void export_depths(const char *filename, const bool selected_only); - void export_TeX(const char *filename, const bool selected_only, bool plain); - void exportProfile(QString filename, const bool selected_only); - void saveProfile(const struct dive *dive, const QString filename); }; |