From 5e57a3bf84b5550e33dcb958c4de41b1c63b6773 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Tue, 12 Dec 2023 14:27:43 -0500 Subject: [PATCH] Fix compile error - Obsolescence issue --- oscar/dailySearchTab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/dailySearchTab.cpp b/oscar/dailySearchTab.cpp index af6ecc71..a7ad653c 100644 --- a/oscar/dailySearchTab.cpp +++ b/oscar/dailySearchTab.cpp @@ -851,7 +851,7 @@ void DailySearchTab::find(QDate& date) { QList sessions = day->getSessions(MT_CPAP); QMap values; // find possible channeld to use - QList apneaLikeChannels(ahiChannels.begin(),ahiChannels.end()); + QVector apneaLikeChannels(ahiChannels); #if 1 if (p_profile->cpap->userEventFlagging()) { apneaLikeChannels.push_back(CPAP_UserFlag1);