Fix EventBreakDown Pie not showing summaries properly

This commit is contained in:
Mark Watkins 2014-06-20 12:35:28 +10:00
parent ffbc94bb41
commit 73c2c0e1da
2 changed files with 4 additions and 4 deletions

View File

@ -41,7 +41,7 @@ void gSegmentChart::SetDay(Day *d)
for (QList<Session *>::iterator s = m_day->begin(); s != m_day->end(); ++s) { for (QList<Session *>::iterator s = m_day->begin(); s != m_day->end(); ++s) {
if ((*s)->enabled() && (*s)->m_cnt.contains(m_codes[c])) { if ((*s)->enabled() && (*s)->m_cnt.contains(m_codes[c])) {
int cnt = (*s)->count(m_codes[c]); EventDataType cnt = (*s)->count(m_codes[c]);
m_values[c] += cnt; m_values[c] += cnt;
m_total += cnt; m_total += cnt;
} }
@ -100,7 +100,7 @@ void gSegmentChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
return; return;
} }
int data; EventDataType data;
unsigned size = m_values.size(); unsigned size = m_values.size();
float line_step = float(width) / float(size - 1); float line_step = float(width) / float(size - 1);
bool line_first = true; bool line_first = true;

View File

@ -49,10 +49,10 @@ class gSegmentChart : public Layer
protected: protected:
QVector<ChannelID> m_codes; QVector<ChannelID> m_codes;
QVector<QString> m_names; QVector<QString> m_names;
QVector<int> m_values; QVector<EventDataType> m_values;
QVector<QColor> m_colors; QVector<QColor> m_colors;
int m_total; EventDataType m_total;
GraphSegmentType m_graph_type; GraphSegmentType m_graph_type;
QColor m_gradient_color; QColor m_gradient_color;
QColor m_outline_color; QColor m_outline_color;