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>
This commit is contained in:
Dirk Hohndel 2020-02-15 11:44:14 -08:00
parent b8c02c9b03
commit 0178f0c7e7
4 changed files with 7 additions and 112 deletions

View file

@ -12,6 +12,7 @@
#include "core/divesite.h"
#include "exportfuncs.h"
#if !defined(SUBSURFACE_MOBILE)
void exportProfile(QString filename, bool selected_only)
{
struct dive *dive;
@ -32,7 +33,6 @@ void exportProfile(QString filename, bool selected_only)
}
}
void export_TeX(const char *filename, bool selected_only, bool plain)
{
FILE *f;
@ -269,6 +269,7 @@ void export_depths(const char *filename, bool selected_only)
}
free_buffer(&buf);
}
#endif /* ! SUBSURFACE_MOBILE */
std::vector<const dive_site *> getDiveSitesToExport(bool selectedOnly)
{