summaryrefslogtreecommitdiffstats
path: root/stats/statsgrid.h
diff options
context:
space:
mode:
Diffstat (limited to 'stats/statsgrid.h')
-rw-r--r--stats/statsgrid.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/stats/statsgrid.h b/stats/statsgrid.h
index ab1b0a513..696341c0b 100644
--- a/stats/statsgrid.h
+++ b/stats/statsgrid.h
@@ -1,6 +1,8 @@
// SPDX-License-Identifier: GPL-2.0
// The background grid of a chart
+#include "statshelper.h"
+
#include <memory>
#include <vector>
@@ -15,5 +17,5 @@ public:
private:
StatsView &view;
const StatsAxis &xAxis, &yAxis;
- std::vector<std::unique_ptr<ChartLineItem>> lines;
+ std::vector<ChartItemPtr<ChartLineItem>> lines;
};