From 55c382d449ba811ea4beb7b176bd2f708486279b Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Sat, 17 Jul 2021 16:20:44 -0700 Subject: [PATCH] Add Unclassified Apneas to statistics page. --- oscar/statistics.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index bee15dae..4878b8a2 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -544,6 +544,7 @@ Statistics::Statistics(QObject *parent) : rows.push_back(StatisticsRow("AHI", SC_AHI, MT_CPAP)); rows.push_back(StatisticsRow("Obstructive", SC_CPH, MT_CPAP)); rows.push_back(StatisticsRow("Hypopnea", SC_CPH, MT_CPAP)); + rows.push_back(StatisticsRow("Apnea", SC_CPH, MT_CPAP)); rows.push_back(StatisticsRow("ClearAirway", SC_CPH, MT_CPAP)); rows.push_back(StatisticsRow("FlowLimit", SC_CPH, MT_CPAP)); rows.push_back(StatisticsRow("RERA", SC_CPH, MT_CPAP));