diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index a41c5660..e3cea829 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -509,7 +509,7 @@ Statistics::Statistics(QObject *parent) : rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_CPAP)); rows.push_back(StatisticsRow(tr("CPAP Usage"), SC_SUBHEADING, MT_CPAP)); rows.push_back(StatisticsRow(tr("Average Hours per Night"), SC_HOURS, MT_CPAP)); - rows.push_back(StatisticsRow(tr("Compliance"), SC_COMPLIANCE, MT_CPAP)); + rows.push_back(StatisticsRow(tr("Compliance (%1 hrs/day)"), SC_COMPLIANCE, MT_CPAP)); rows.push_back(StatisticsRow(tr("Therapy Efficacy"), SC_SUBHEADING, MT_CPAP)); rows.push_back(StatisticsRow("AHI", SC_AHI, MT_CPAP)); @@ -1100,8 +1100,10 @@ QString Statistics::GenerateHTML() if (row.calc == SC_AHI) { name = ahitxt; - } else if ((row.calc == SC_HOURS) || (row.calc == SC_COMPLIANCE)) { + } else if (row.calc == SC_HOURS) { name = row.src; + } else if (row.calc == SC_COMPLIANCE) { + name = QString(row.src).arg(p_profile->cpap->m_complianceHours); } else if (row.calc == SC_COLUMNHEADERS) { html += QString("%1\n").arg(tr("Details")); for (int j=0; j < periods.size(); j++) { diff --git a/oscar/welcome.cpp b/oscar/welcome.cpp index 970b313c..554c6bd1 100644 --- a/oscar/welcome.cpp +++ b/oscar/welcome.cpp @@ -170,7 +170,7 @@ QString Welcome::GenerateCPAPHTML() int hour = hours; QString timestr = tr("%1 hours, %2 minutes and %3 seconds").arg(hour).arg(minutes).arg(seconds); - const EventDataType compliance_min = 4.0; + const EventDataType compliance_min = p_profile->cpap->m_complianceHours; // 4.0; if (hours > compliance_min) html += tr("Your machine was on for %1.").arg(timestr)+"
"; else html += tr("You only had the mask on for %1.").arg(timestr)+"
";