From e48be7ae729ff53b1945dab23b0a5052467dcbeb Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Tue, 6 Jun 2023 14:16:33 -0400 Subject: [PATCH] change statistics warning again according to latest request. --- oscar/statistics.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index ce1cf5a9..4b06a5ed 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -245,10 +245,11 @@ Duration of longest disabled session: aa minutes, Total duration of all disabled case 0: return QString(QObject::tr("Warning: As Permissive mode is set (Preferences/Clinical), some sessions are excluded from this report")); case 1: - return QString(QObject::tr("Total disabled sessions: %1, found in %2 days, of which %3 days would have caused compliance failures") + return QString(QObject::tr("Total disabled sessions: %1, found in %2 days") //, of which %3 days would have caused compliance failures") .arg(numDisabledsessions) .arg(numDaysWithDisabledsessions) - .arg(numDaysDisabledSessionChangedCompliance) ); + //.arg(numDaysDisabledSessionChangedCompliance) + ); case 2: return QString(QObject::tr( "Duration of longest disabled session: %1 minutes, Total duration of all disabled sessions: %2 minutes.") .arg(maxDurationOfaDisabledsession)