From 90e98ccfda860f5826c8725e3e0116acb2c43d1b Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Tue, 2 Jul 2024 11:18:34 -0400 Subject: [PATCH] fix statistics display of months not used --- oscar/statistics.cpp | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 50266c6b..ca6cc459 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -241,7 +241,8 @@ void Statistics::adjustRange(QDate& start , QDate& last) { } else { last = qMin(last ,p_profile->general->statReportDate() ); } - start = qMin(start,last); + start = qMax(start,p_profile->FirstDay()); // need if less than a years samples + start = qMin(start,last); // insure start is always less than max. SHould be but??? summaryInfo.update(start,last); } @@ -1399,20 +1400,16 @@ QString Statistics::GenerateCPAPUsage() // should never get here. number_periods = 12; } - last = lastcpap; - first = lastcpap; } else if (p_profile->general->statReportMode() == STAT_MODE_STANDARD) { firstcpap = lastcpap.addYears(-1).addDays(1); adjustRange(firstcpap,lastcpap); - last = lastcpap; - first = lastcpap; } else if (p_profile->general->statReportMode() == STAT_MODE_RANGE) { firstcpap = p_profile->general->statReportRangeStart(); lastcpap = p_profile->general->statReportRangeEnd(); adjustRange(firstcpap,lastcpap); - first = firstcpap; - last = lastcpap; } + last = lastcpap; + first = lastcpap; QList periods; bool skipsection = false;;