##// END OF EJS Templates
Fix memory leak in presenter example
Michal Klocek -
r257:0ac69f2530b6
parent child
Show More
@@ -43,7 +43,9 m_index(0)
43 43
44 44 ChartView::~ChartView()
45 45 {
46
46 if(m_series.size()==0) return;
47 removeSeries(m_series.at(m_index));
48 qDeleteAll(m_series);
47 49 }
48 50
49 51 void ChartView::handleTimeout()
General Comments 0
You need to be logged in to leave comments. Login now