mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix EventBreakDown Pie not showing summaries properly
This commit is contained in:
parent
ffbc94bb41
commit
73c2c0e1da
@ -41,7 +41,7 @@ void gSegmentChart::SetDay(Day *d)
|
||||
|
||||
for (QList<Session *>::iterator s = m_day->begin(); s != m_day->end(); ++s) {
|
||||
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_total += cnt;
|
||||
}
|
||||
@ -100,7 +100,7 @@ void gSegmentChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
||||
return;
|
||||
}
|
||||
|
||||
int data;
|
||||
EventDataType data;
|
||||
unsigned size = m_values.size();
|
||||
float line_step = float(width) / float(size - 1);
|
||||
bool line_first = true;
|
||||
|
@ -49,10 +49,10 @@ class gSegmentChart : public Layer
|
||||
protected:
|
||||
QVector<ChannelID> m_codes;
|
||||
QVector<QString> m_names;
|
||||
QVector<int> m_values;
|
||||
QVector<EventDataType> m_values;
|
||||
QVector<QColor> m_colors;
|
||||
|
||||
int m_total;
|
||||
EventDataType m_total;
|
||||
GraphSegmentType m_graph_type;
|
||||
QColor m_gradient_color;
|
||||
QColor m_outline_color;
|
||||
|
Loading…
Reference in New Issue
Block a user