From 68b4e7bba4985f62324e046333300a1eff081dc5 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 5 Aug 2014 21:30:25 +1000 Subject: [PATCH] Free linechart overlay flags properly on shutdown --- sleepyhead/Graphs/gLineChart.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 1956aad1..68cf70c7 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -34,6 +34,14 @@ gLineChart::gLineChart(ChannelID code, QColor col, bool square_plot, bool disabl } gLineChart::~gLineChart() { + QHash::iterator fit; + for (fit = flags.begin(); fit != flags.end(); ++fit) { + // destroy any overlay bar from previous day + delete fit.value(); + } + + flags.clear(); + } bool gLineChart::isEmpty() @@ -851,7 +859,7 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) legendx -= bw*2; } } - if (m_day && (p_profile->appearance->lineCursorMode() || (m_codes[0]==CPAP_FlowRate || mouseover))) { + if (m_day && (p_profile->appearance->lineCursorMode() || (m_codes[0]==CPAP_FlowRate))) { QHash::iterator fit; for (fit = flags.begin(); fit != flags.end(); ++fit) { fit.value()->paint(painter, w, region);