From b4682b4ccba4b26f1f89bb01a8bbdcdf79e557ec Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sat, 10 Jun 2023 20:23:47 -0400 Subject: [PATCH] Add year to statistics monthly display --- oscar/statistics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index ee98213e..74d88c09 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1290,10 +1290,10 @@ QString Statistics::GenerateCPAPUsage() s = first; } if (p_profile->countDays(row.type, s, l) > 0) { - periods.push_back(Period(s, l, s.toString("MMMM"))); + periods.push_back(Period(s, l, s.toString("MMMM yyyy"))); j++; } - l = s.addDays(-1); + l = s.addDays(-1); } while ((l > first) && (j < number_periods)); for (; j < number_periods; ++j) {