Fix compile problem with QT 5.9; change Patient Access to Essentials

- Values of "On" and "Plus" will be shown for this field.
- Field name will remain Patient Access until a new profile is created or language is changed.
This commit is contained in:
Guy Scharf 2020-08-31 22:02:32 -07:00
parent 9d9955e0bb
commit 23036ec8cd

View File

@ -158,10 +158,10 @@ void ResmedLoader::initChannels()
chan->addOption(1, STR_TR_Yes); chan->addOption(1, STR_TR_Yes);
channel.add(GRP_CPAP, chan = new Channel(RMS9_PtAccess= 0xe20A, SETTING, MT_CPAP, SESSION, channel.add(GRP_CPAP, chan = new Channel(RMS9_PtAccess= 0xe20A, SETTING, MT_CPAP, SESSION,
"RMS9_PTAccess", QObject::tr("Pt. Access"), QObject::tr("Patient Access"), QObject::tr("Patient Access"), "", LOOKUP, Qt::black)); "RMS9_PTAccess", QObject::tr("Pt. Access"), QObject::tr("Essentials"), QObject::tr("Essentials"), "", LOOKUP, Qt::black));
chan->addOption(0, STR_TR_No); chan->addOption(0, QObject::tr("Plus"));
chan->addOption(1, STR_TR_Yes); chan->addOption(1, QObject::tr("On"));
channel.add(GRP_CPAP, chan = new Channel(RMS9_ClimateControl= 0xe20B, SETTING, MT_CPAP, SESSION, channel.add(GRP_CPAP, chan = new Channel(RMS9_ClimateControl= 0xe20B, SETTING, MT_CPAP, SESSION,
"RMS9_ClimateControl", QObject::tr("Climate Control"), QObject::tr("Climate Control"), QObject::tr("Climate Control"), "", LOOKUP, Qt::black)); "RMS9_ClimateControl", QObject::tr("Climate Control"), QObject::tr("Climate Control"), QObject::tr("Climate Control"), "", LOOKUP, Qt::black));
@ -404,7 +404,7 @@ int ResmedLoader::Open(const QString & dirpath)
if (backupFile.exists()) if (backupFile.exists())
backupFile.remove(); backupFile.remove();
if (!QFile::copy(importPath + RMS9_STR_idfile + STR_ext_TGT, backup_path + RMS9_STR_idfile + STR_ext_TGT)) if (!QFile::copy(importPath + RMS9_STR_idfile + STR_ext_TGT, backup_path + RMS9_STR_idfile + STR_ext_TGT))
qWarning() << "Could not copy" << importPath + RMS9_STR_idfile + STR_ext_TGT << "to backup" << backupFile; qWarning() << "Could not copy" << importPath + RMS9_STR_idfile + STR_ext_TGT << "to backup" << backupFile.fileName();
backupFile.setFileName(backup_path + RMS9_STR_idfile + STR_ext_CRC); backupFile.setFileName(backup_path + RMS9_STR_idfile + STR_ext_CRC);
if (backupFile.exists()) if (backupFile.exists())
@ -472,7 +472,7 @@ int ResmedLoader::Open(const QString & dirpath)
QFile backupFile(backup_path + "STR.crc"); QFile backupFile(backup_path + "STR.crc");
if (backupFile.exists()) if (backupFile.exists())
if (!backupFile.remove()) if (!backupFile.remove())
qWarning() << "Failed to remove" << backupFile; qWarning() << "Failed to remove" << backupFile.fileName();
if (!QFile::copy(importPath + "STR.crc", backup_path + "STR.crc")) if (!QFile::copy(importPath + "STR.crc", backup_path + "STR.crc"))
qWarning() << "Failed to copy STR.crc from" << importPath << "to" << backup_path; qWarning() << "Failed to copy STR.crc from" << importPath << "to" << backup_path;
} }