From 5d3caeab3b20f629bbffbfc1db22c4cdb4f35789 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Sat, 19 Nov 2022 04:39:20 -0500 Subject: [PATCH] Attempt to change I:E Ratio to I/E Value --- oscar/SleepLib/schema.cpp | 2 +- oscar/common_gui.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/schema.cpp b/oscar/SleepLib/schema.cpp index 401ab026..d2676d01 100644 --- a/oscar/SleepLib/schema.cpp +++ b/oscar/SleepLib/schema.cpp @@ -252,7 +252,7 @@ void init() schema::channel[CPAP_Leak].setLowerThreshold(24.0); schema::channel.add(GRP_CPAP, new Channel(CPAP_IE = 0x1109, WAVEFORM, MT_CPAP, SESSION, "IE", - QObject::tr("I:E Ratio"), QObject::tr("Ratio between Inspiratory and Expiratory time"), QObject::tr("I:E Ratio"), STR_UNIT_Ratio, DEFAULT, QColor("dark red"))); + QObject::tr("I/E Value"), QObject::tr("Ratio between Inspiratory and Expiratory time"), QObject::tr("I/E Value"), STR_UNIT_Ratio, DEFAULT, QColor("dark red"))); schema::channel.add(GRP_CPAP, new Channel(CPAP_Te = 0x110A, WAVEFORM, MT_CPAP, SESSION, STR_GRAPH_Te, QObject::tr("Expiratory Time"), QObject::tr("Time taken to breathe out"), QObject::tr("Exp. Time"), STR_UNIT_Seconds, DEFAULT, QColor("dark green"))); diff --git a/oscar/common_gui.h b/oscar/common_gui.h index 40c51ea5..1e4d5594 100644 --- a/oscar/common_gui.h +++ b/oscar/common_gui.h @@ -29,7 +29,7 @@ const QString STR_GRAPH_PTB = "PTB"; const QString STR_GRAPH_RespEvent = "RespEvent"; const QString STR_GRAPH_Ti = "Ti"; const QString STR_GRAPH_Te = "Te"; -const QString STR_GRAPH_IE = "I:E"; +const QString STR_GRAPH_IE = "I/E"; const QString STR_GRAPH_SleepStage = "SleepStage"; const QString STR_GRAPH_Inclination = "Inclination"; const QString STR_GRAPH_Orientation = "Orientation";