From 4d3fc5b4cacc72ce20e3b3d9fab8d6a3efa58c85 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 1 Dec 2011 13:45:49 +1000 Subject: [PATCH] Overview Summary Chart fix for that last fix --- Graphs/gSummaryChart.cpp | 23 ++++++++++------------- Graphs/gSummaryChart.h | 2 +- 2 files changed, 11 insertions(+), 14 deletions(-) diff --git a/Graphs/gSummaryChart.cpp b/Graphs/gSummaryChart.cpp index a2373744..ff6cbcac 100644 --- a/Graphs/gSummaryChart.cpp +++ b/Graphs/gSummaryChart.cpp @@ -44,7 +44,8 @@ void SummaryChart::SetDay(Day * nullday) m_times.clear(); m_days.clear(); m_hours.clear(); - m_badcodes.clear(); + m_goodcodes.clear(); + m_goodcodes[""]=1; m_miny=999999999; m_maxy=-999999999; m_minx=0; @@ -132,17 +133,13 @@ void SummaryChart::SetDay(Day * nullday) tmp-=suboffset; if (tmp<0) tmp=0; } - //if (tmp>0) { - fnd=true; - total+=tmp; - m_values[dn][j+1]=tmp; - if (tmpm_maxy) m_maxy=tmp; - break; - // } - - } else { - m_badcodes[code]=1; + fnd=true; + total+=tmp; + m_values[dn][j+1]=tmp; + if (tmpm_maxy) m_maxy=tmp; + m_goodcodes[code]=1; + break; } } } @@ -434,7 +431,7 @@ void SummaryChart::paint(gGraph & w,int left, int top, int width, int height) for (int j=0;j m_colors; QVector m_codes; - QHash m_badcodes; + QHash m_goodcodes; QVector m_type; QHash > m_values; QHash > m_times;