Add year to statistics monthly display

This commit is contained in:
LoudSnorer 2023-06-10 20:23:47 -04:00
parent 119112c7a1
commit b4682b4ccb

View File

@ -1290,7 +1290,7 @@ QString Statistics::GenerateCPAPUsage()
s = first; s = first;
} }
if (p_profile->countDays(row.type, s, l) > 0) { 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++; j++;
} }
l = s.addDays(-1); l = s.addDays(-1);