diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index 2bcf02cd..afede063 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -707,7 +707,7 @@ QString Statistics::generateFooter(bool showinfo)
if (showinfo) {
html += "
";
QDateTime timestamp = QDateTime::currentDateTime();
- html += tr("This report was generated on %1 by OSCAR v%2").arg(timestamp.toString(MedDateFormat + " hh:mm"))
+ html += tr("This report was prepared on %1 by OSCAR v%2").arg(timestamp.toString(MedDateFormat + " hh:mm"))
.arg(ReleaseStatus == "r" ? ShortVersionString : VersionString + " (" + gitRevision() + ")")
+ "
"
+ tr("OSCAR is free open-source CPAP report software");
@@ -858,15 +858,25 @@ const QString heading_color="#ffffff";
const QString subheading_color="#e0e0e0";
//const int rxthresh = 5;
+// Sort machines by first day of use
+bool machineCompareFirstDay(Machine* left, Machine *right) {
+ return left->FirstDay() > right->FirstDay();
+}
+
+
QString Statistics::GenerateMachineList()
{
QList cpap_machines = p_profile->GetMachines(MT_CPAP);
QList oximeters = p_profile->GetMachines(MT_OXIMETER);
QList mach;
+ std::sort(cpap_machines.begin(), cpap_machines.end(), machineCompareFirstDay);
+ std::sort(oximeters.begin(), oximeters.end(), machineCompareFirstDay);
+
mach.append(cpap_machines);
mach.append(oximeters);
+
QString html;
if (mach.size() > 0) {
html += "
";