diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-02-07 20:48:43 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-02-13 13:02:54 -0800 |
commit | 21b8cded56854f81327f4f553e32a15ffe5c7b82 (patch) | |
tree | 354194513eed9bdb69d31f1855edbade60bb0ad5 /stats/statsseries.cpp | |
parent | bd252fc8201c7e77882ac95ef90ddbf4a16356d3 (diff) | |
download | subsurface-21b8cded56854f81327f4f553e32a15ffe5c7b82.tar.gz |
statistics: highlight selected pie slices
In analogy to the other charts, highlight selected pie slices.
Overlay them with a checkerboard pattern, like in the bar charts.
Since all charts now support highlighting, the divesSelected()
virtual function now doesn't need a default implementation
anymore.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'stats/statsseries.cpp')
-rw-r--r-- | stats/statsseries.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/stats/statsseries.cpp b/stats/statsseries.cpp index 0885f14de..379628fe1 100644 --- a/stats/statsseries.cpp +++ b/stats/statsseries.cpp @@ -17,10 +17,6 @@ QPointF StatsSeries::toScreen(QPointF p) : QPointF(0.0, 0.0); } -void StatsSeries::divesSelected(const QVector<dive *> &) -{ -} - bool StatsSeries::supportsLassoSelection() const { return false; |