mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
sort out qSort deprecation and an updates file creation time check one
This commit is contained in:
parent
90990ad66d
commit
fd6644e382
@ -1274,7 +1274,7 @@ void zMaskProfile::scanPressure(Session *session)
|
||||
scanPressureList(session, CPAP_IPAP);
|
||||
|
||||
// Sort by time
|
||||
qSort(Pressure);
|
||||
std::sort(Pressure.begin(), Pressure.end());
|
||||
}
|
||||
void zMaskProfile::scanLeakList(EventList *el)
|
||||
{
|
||||
@ -1970,7 +1970,7 @@ int calcSPO2Drop(Session *session)
|
||||
EventDataType baseline = 0;
|
||||
|
||||
if (med.size() > 0) {
|
||||
qSort(med);
|
||||
std::sort(med.begin(), med.end());
|
||||
|
||||
int midx = float(med.size()) * 0.90;
|
||||
|
||||
|
@ -379,7 +379,7 @@ EventDataType Day::percentile(ChannelID code, EventDataType percentile)
|
||||
}
|
||||
|
||||
// sort by weight, then value
|
||||
qSort(valcnt);
|
||||
std::sort(valcnt.begin(), valcnt.end());
|
||||
|
||||
//double SN=100.0/double(N); // 100% / overall sum
|
||||
double p = 100.0 * percentile;
|
||||
@ -550,7 +550,7 @@ EventDataType Day::rangePercentile(ChannelID code, float p, qint64 st, qint64 et
|
||||
}
|
||||
|
||||
// TODO: use nth_element instead..
|
||||
qSort(list);
|
||||
std::sort(list.begin(), list.end());
|
||||
|
||||
float b = float(idx) * p;
|
||||
int a = floor(b);
|
||||
|
@ -285,7 +285,7 @@ int FPIconLoader::OpenMachine(Machine *mach, const QString & path)
|
||||
// qDebug() << k << "-" <<j << ":" << zz << qRound(dur) << "minutes" << (b ? "*" : "") << (c ? QDateTime::fromTime_t(zz).toString() : "");
|
||||
// }
|
||||
// }
|
||||
// qSort(chunks);
|
||||
// std::sort(chunks.begin(), chunks.end());
|
||||
// bool b,c;
|
||||
// for (int i=0;i<chunks.size();i++) {
|
||||
// const FPWaveChunk & chunk=chunks.at(i);
|
||||
|
@ -1751,7 +1751,7 @@ EventDataType Profile::calcPercentile(ChannelID code, EventDataType percent, Mac
|
||||
}
|
||||
|
||||
// sort by weight, then value
|
||||
qSort(valcnt);
|
||||
std::sort(valcnt.begin(), valcnt.end());
|
||||
|
||||
//double SN=100.0/double(N); // 100% / overall sum
|
||||
double p = 100.0 * percent;
|
||||
|
@ -99,7 +99,7 @@ void UpdaterWindow::checkForUpdates()
|
||||
// Check updates.xml file if it's still recent..
|
||||
if (QFile::exists(filename)) {
|
||||
QFileInfo fi(filename);
|
||||
QDateTime created = fi.created();
|
||||
QDateTime created = fi.birthTime();
|
||||
int age = created.secsTo(QDateTime::currentDateTime());
|
||||
|
||||
if (age < 900) {
|
||||
@ -525,7 +525,7 @@ void UpdaterWindow::ParseUpdatesXML(QIODevice *dev)
|
||||
}
|
||||
|
||||
// Um... not optimal.
|
||||
qSort(versions);
|
||||
std::sort(versions.begin(), versions.end());
|
||||
|
||||
QString platform = PlatformString.toLower();
|
||||
release = nullptr;
|
||||
|
@ -475,7 +475,7 @@ void Statistics::updateRXChanges()
|
||||
ri.value().highlight = 0;
|
||||
}
|
||||
|
||||
qSort(list.begin(), list.end(), rxAHILessThan);
|
||||
std::sort(list.begin(), list.end(), rxAHILessThan);
|
||||
|
||||
if (list.size() >= 4) {
|
||||
list[0]->highlight = 1; // best
|
||||
@ -1440,7 +1440,7 @@ void Statistics::UpdateRecordsBox()
|
||||
ri.value().highlight = 0;
|
||||
}
|
||||
|
||||
qSort(list.begin(), list.end(), rxAHILessThan);
|
||||
std::sort(list.begin(), list.end(), rxAHILessThan);
|
||||
|
||||
|
||||
if (list.size() >= 2) {
|
||||
|
Loading…
Reference in New Issue
Block a user