From eb8b3f19ea9e9d5fba373624cfcba2c4442e8cac Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Mon, 12 Jun 2023 20:30:53 -0400 Subject: [PATCH] commit correct mistake --- oscar/statistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index e85228d0..7833dded 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1303,7 +1303,7 @@ QString Statistics::GenerateCPAPUsage() periods.push_back(Period(first,last,finished, 0, false ,tr("Most Recent"))); periods.push_back(Period(first,last,finished, -6, false ,tr("Last Week"))); periods.push_back(Period(first,last,finished, -29,false, tr("Last 30 Days"))); - periods.push_back(Period(first,last,finished, -3,true, tr("Last 3 Months"))); + periods.push_back(Period(first,last,finished, -6,true, tr("Last 6 Months"))); periods.push_back(Period(first,last,finished, -12,true,tr("Last Year"))); } else if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) { QDate l=last,s=last;