From fd6644e3827620f4fa006a1de12b9711a44650cc Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 8 Jun 2018 08:09:05 +1000 Subject: [PATCH] sort out qSort deprecation and an updates file creation time check one --- sleepyhead/SleepLib/calcs.cpp | 4 ++-- sleepyhead/SleepLib/day.cpp | 4 ++-- sleepyhead/SleepLib/loader_plugins/icon_loader.cpp | 2 +- sleepyhead/SleepLib/profiles.cpp | 2 +- sleepyhead/UpdaterWindow.cpp | 4 ++-- sleepyhead/statistics.cpp | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sleepyhead/SleepLib/calcs.cpp b/sleepyhead/SleepLib/calcs.cpp index e76aa74a..681618bd 100644 --- a/sleepyhead/SleepLib/calcs.cpp +++ b/sleepyhead/SleepLib/calcs.cpp @@ -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; diff --git a/sleepyhead/SleepLib/day.cpp b/sleepyhead/SleepLib/day.cpp index 28d84e42..3d312e3a 100644 --- a/sleepyhead/SleepLib/day.cpp +++ b/sleepyhead/SleepLib/day.cpp @@ -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); diff --git a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp index 1a53d7e8..21d6a428 100644 --- a/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/icon_loader.cpp @@ -285,7 +285,7 @@ int FPIconLoader::OpenMachine(Machine *mach, const QString & path) // qDebug() << k << "-" <= 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) {