diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index a412b3ce..765bc959 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -911,6 +911,11 @@ QString Statistics::GenerateMachineList() } QString Statistics::GenerateRXChanges() { + // Generate list only if there are CPAP machines + QList cpap_machines = p_profile->GetMachines(MT_CPAP); + if (cpap_machines.isEmpty()) + return ""; + // do the actual data sorting... updateRXChanges();