Attempt to change I:E Ratio to I/E Value

This commit is contained in:
Phil Olynyk 2022-11-19 04:39:20 -05:00
parent a3b7ba52c3
commit 5d3caeab3b
2 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@ void init()
schema::channel[CPAP_Leak].setLowerThreshold(24.0); schema::channel[CPAP_Leak].setLowerThreshold(24.0);
schema::channel.add(GRP_CPAP, new Channel(CPAP_IE = 0x1109, WAVEFORM, MT_CPAP, SESSION, "IE", 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, 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"))); QObject::tr("Expiratory Time"), QObject::tr("Time taken to breathe out"), QObject::tr("Exp. Time"), STR_UNIT_Seconds, DEFAULT, QColor("dark green")));

View File

@ -29,7 +29,7 @@ const QString STR_GRAPH_PTB = "PTB";
const QString STR_GRAPH_RespEvent = "RespEvent"; const QString STR_GRAPH_RespEvent = "RespEvent";
const QString STR_GRAPH_Ti = "Ti"; const QString STR_GRAPH_Ti = "Ti";
const QString STR_GRAPH_Te = "Te"; 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_SleepStage = "SleepStage";
const QString STR_GRAPH_Inclination = "Inclination"; const QString STR_GRAPH_Inclination = "Inclination";
const QString STR_GRAPH_Orientation = "Orientation"; const QString STR_GRAPH_Orientation = "Orientation";