ResMed model name tweak

This commit is contained in:
Mark Watkins 2014-07-31 06:49:44 +10:00
parent 2665c20e63
commit d3fe79a97d

View File

@ -914,9 +914,16 @@ MachineInfo ResmedLoader::PeekInfo(const QString & path)
info.serial = value;
} else if (key == "PNA") { // Product Name
value.replace("S9", "");
value.replace("_"," ");
value.replace("S9 ", "");
info.model = value;
value.replace("(","");
value.replace(")","");
if (value.contains("Adapt", Qt::CaseInsensitive)) {
if (!value.contains("VPAP")) {
value.replace("Adapt", QObject::tr("VPAP Adapt"));
}
}
info.model = value.trimmed();
} else if (key == "PCD") { // Product Code
info.modelnumber = value;
}