diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index bac0d5c0..aec8f925 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1594,8 +1594,8 @@ QString Statistics::UpdateRecordsBox() tr("Date: %1 - %2").arg(rxbest.start.toString(Qt::SystemLocaleShortDate)).arg(rxbest.end.toString(Qt::SystemLocaleShortDate)) + "
"; html += QString("%1").arg(rxbest.machine->model()) + "
"; html += QString("Serial: %1").arg(rxbest.machine->serial()) + "
"; - html += tr("Culminative AHI: %1").arg(double(rxbest.ahi) / rxbest.hours, 0, 'f', 2) + "
"; - html += tr("Culminative Hours: %1").arg(rxbest.hours, 0, 'f', 2) + "
"; + html += tr("AHI: %1").arg(double(rxbest.ahi) / rxbest.hours, 0, 'f', 2) + "
"; + html += tr("Total Hours: %1").arg(rxbest.hours, 0, 'f', 2) + "
"; html += QString("%1").arg(rxbest.pressure) + "
"; html += QString("%1").arg(formatRelief(rxbest.relief)) + "
"; html += "
"; @@ -1606,8 +1606,8 @@ QString Statistics::UpdateRecordsBox() tr("Date: %1 - %2").arg(rxworst.start.toString(Qt::SystemLocaleShortDate)).arg(rxworst.end.toString(Qt::SystemLocaleShortDate)) + "
"; html += QString("%1").arg(rxworst.machine->model()) + "
"; html += QString("Serial: %1").arg(rxworst.machine->serial()) + "
"; - html += tr("Culminative AHI: %1").arg(double(rxworst.ahi) / rxworst.hours, 0, 'f', 2) + "
"; - html += tr("Culminative Hours: %1").arg(rxworst.hours, 0, 'f', 2) + "
"; + html += tr("AHI: %1").arg(double(rxworst.ahi) / rxworst.hours, 0, 'f', 2) + "
"; + html += tr("Total Hours: %1").arg(rxworst.hours, 0, 'f', 2) + "
"; html += QString("%1").arg(rxworst.pressure) + "
"; html += QString("%1").arg(formatRelief(rxworst.relief)) + "
";