Fix compile error - Obsolescence issue

This commit is contained in:
LoudSnorer 2023-12-12 14:27:43 -05:00
parent a35a54fb56
commit 5e57a3bf84

View File

@ -851,7 +851,7 @@ void DailySearchTab::find(QDate& date) {
QList<Session *> sessions = day->getSessions(MT_CPAP); QList<Session *> sessions = day->getSessions(MT_CPAP);
QMap<ChannelID,int> values; QMap<ChannelID,int> values;
// find possible channeld to use // find possible channeld to use
QList<ChannelID> apneaLikeChannels(ahiChannels.begin(),ahiChannels.end()); QVector<ChannelID> apneaLikeChannels(ahiChannels);
#if 1 #if 1
if (p_profile->cpap->userEventFlagging()) { if (p_profile->cpap->userEventFlagging()) {
apneaLikeChannels.push_back(CPAP_UserFlag1); apneaLikeChannels.push_back(CPAP_UserFlag1);