mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Update PRS1 loader to respect new preference for warnings on untested machines.
This commit is contained in:
parent
9521de7e18
commit
fdd1b658a2
@ -799,17 +799,19 @@ Machine* PRS1Loader::CreateMachineFromProperties(QString propertyfile)
|
|||||||
// This time supply the machine object so it can populate machine properties..
|
// This time supply the machine object so it can populate machine properties..
|
||||||
PeekProperties(m->info, propertyfile, m);
|
PeekProperties(m->info, propertyfile, m);
|
||||||
|
|
||||||
if (!m->untested() && !s_PRS1ModelInfo.IsTested(props)) {
|
if (!s_PRS1ModelInfo.IsTested(props)) {
|
||||||
m->setUntested(true);
|
|
||||||
qDebug() << info.modelnumber << "untested";
|
qDebug() << info.modelnumber << "untested";
|
||||||
|
if (p_profile->session->warnOnUntestedMachine() && !m->untested()) {
|
||||||
|
m->setUntested(true); // don't warn the user more than once
|
||||||
#ifndef UNITTEST_MODE
|
#ifndef UNITTEST_MODE
|
||||||
QMessageBox::information(QApplication::activeWindow(),
|
QMessageBox::information(QApplication::activeWindow(),
|
||||||
QObject::tr("Machine Untested"),
|
QObject::tr("Machine Untested"),
|
||||||
QObject::tr("Your Philips Respironics CPAP machine (Model %1) has not been tested yet.").arg(info.modelnumber) +"\n\n"+
|
QObject::tr("Your Philips Respironics CPAP machine (Model %1) has not been tested yet.").arg(info.modelnumber) +"\n\n"+
|
||||||
QObject::tr("It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card and matching Encore .pdf reports to make sure it works with OSCAR.")
|
QObject::tr("It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card and matching Encore .pdf reports to make sure it works with OSCAR.")
|
||||||
,QMessageBox::Ok);
|
,QMessageBox::Ok);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mark the machine in the profile as unsupported.
|
// Mark the machine in the profile as unsupported.
|
||||||
|
Loading…
Reference in New Issue
Block a user