diff options
| author | 2021-05-01 21:21:50 +0200 | |
|---|---|---|
| committer | 2021-05-06 08:21:04 -0700 | |
| commit | 38d0fac2d1a074ac7de23ebb61ea06adc32cd30f (patch) | |
| tree | c7208bc0d0d56b8f294efdf4958bdc1a4db74895 /backend-shared/exportfuncs.h | |
| parent | 9ee8807af7276ee8a910561f671a8cd1936babf9 (diff) | |
| download | subsurface-38d0fac2d1a074ac7de23ebb61ea06adc32cd30f.tar.gz | |
export: show progress dialog for profile exports
Simply reuse QProgressDialog interface for the TeX exports.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'backend-shared/exportfuncs.h')
| -rw-r--r-- | backend-shared/exportfuncs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend-shared/exportfuncs.h b/backend-shared/exportfuncs.h index 3eb83c9b1..ed483f90d 100644 --- a/backend-shared/exportfuncs.h +++ b/backend-shared/exportfuncs.h @@ -13,7 +13,7 @@ struct ExportCallback { virtual bool canceled() const; }; -void exportProfile(QString filename, bool selected_only); +void exportProfile(QString filename, bool selected_only, ExportCallback &cb); void export_TeX(const char *filename, bool selected_only, bool plain, ExportCallback &cb); void export_depths(const char *filename, bool selected_only); std::vector<const dive_site *> getDiveSitesToExport(bool selectedOnly); |