diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-02-15 11:44:14 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-17 10:50:51 -0800 |
commit | 0178f0c7e78d8e61e5794f33e519a87c56039c06 (patch) | |
tree | b038f425803b76431778a712346a61c279e78fb6 /mobile-widgets/qmlmanager.h | |
parent | b8c02c9b030da70f5abdd143fcde4a1bf8435a94 (diff) | |
download | subsurface-0178f0c7e78d8e61e5794f33e519a87c56039c06.tar.gz |
mobile/export: remove most of the export options
A tablet or phone is not a computer. What would you do with a CSV or TeX/LaTeX
file on a phone. Yeah, I get it, feature parity.
This should never have been merged.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.h')
-rw-r--r-- | mobile-widgets/qmlmanager.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index a3fce0576..c3124c21c 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -61,18 +61,12 @@ public: EX_DIVE_SITES_XML, EX_UDDF, EX_DIVELOGS_DE, - EX_DIVESHARE, - EX_CSV_DIVE_PROFILE, - EX_CSV_DETAILS, - EX_CSV_PROFILE, - EX_PROFILE_PNG, - EX_WORLD_MAP, - EX_TEX, - EX_LATEX, - EX_IMAGE_DEPTHS + EX_DIVESHARE }; Q_ENUM(export_types) +#if !defined(Q_OS_ANDROID) Q_INVOKABLE void exportToFile(export_types type, QString directory, bool anonymize); +#endif Q_INVOKABLE void exportToWEB(export_types type, QString userId, QString password, bool anonymize); |