mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Show machine (rx) changes only if there are CPAP machines in this profile.
This commit is contained in:
parent
22a8303836
commit
091253f03d
@ -911,6 +911,11 @@ QString Statistics::GenerateMachineList()
|
||||
}
|
||||
QString Statistics::GenerateRXChanges()
|
||||
{
|
||||
// Generate list only if there are CPAP machines
|
||||
QList<Machine *> cpap_machines = p_profile->GetMachines(MT_CPAP);
|
||||
if (cpap_machines.isEmpty())
|
||||
return "";
|
||||
|
||||
// do the actual data sorting...
|
||||
updateRXChanges();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user