diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2021-01-08 12:53:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-01-10 15:16:52 -0800 |
commit | b40354c7f28676d011de35e49b178d9aa789bbc7 (patch) | |
tree | fcf3569df1740c9511dda5f0fb14559a80083be5 /stats/statsaxis.cpp | |
parent | eb2b0f0a3eb9cf84970c9a21dda9553112b99b17 (diff) | |
download | subsurface-b40354c7f28676d011de35e49b178d9aa789bbc7.tar.gz |
build-system: compile stats code on mobile OSs
Android and iOS use qmake, so add the code to the .pro file.
This also removes all remnants of QCharts includes and uses and all the
references to QCharts in our various build systems.
That was a brief but extremely useful detour.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'stats/statsaxis.cpp')
-rw-r--r-- | stats/statsaxis.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stats/statsaxis.cpp b/stats/statsaxis.cpp index 4d70488da..8b8694964 100644 --- a/stats/statsaxis.cpp +++ b/stats/statsaxis.cpp @@ -9,7 +9,6 @@ #include "core/subsurface-time.h" #include <math.h> // for lrint #include <numeric> -#include <QChart> #include <QFontMetrics> #include <QLocale> @@ -228,7 +227,6 @@ ValueAxis::ValueAxis(const QString &title, double min, double max, int decimals, void ValueAxis::updateLabels() { - using QtCharts::QValueAxis; labels.clear(); ticks.clear(); |