From 77ce41fd6fc3ce8e638674a768faed89e2b1cb86 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sun, 11 Jun 2023 08:17:38 -0400 Subject: [PATCH] Changed Rx Setting to Device setting --- oscar/statistics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index b49af188..4c3d4654 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -1771,7 +1771,7 @@ QString Statistics::UpdateRecordsBox() if (list.size() >= 2) { - html += ""+tr("Best RX Setting")+"
"; + html += ""+tr("Best Device Setting")+"
"; const RXItem & rxbest = *list.at(0); html += QString("").arg(rxbest.start.toString(Qt::ISODate)).arg(rxbest.end.toString(Qt::ISODate)) + tr("Date: %1 - %2").arg(rxbest.start.toString(Qt::SystemLocaleShortDate)).arg(rxbest.end.toString(Qt::SystemLocaleShortDate)) + "
"; @@ -1783,7 +1783,7 @@ QString Statistics::UpdateRecordsBox() html += QString("%1").arg(formatRelief(rxbest.relief)) + "
"; html += "
"; - html += ""+tr("Worst RX Setting")+"
"; + html += ""+tr("Worst Device Setting")+"
"; const RXItem & rxworst = *list.at(list.size() -1); html += QString("").arg(rxworst.start.toString(Qt::ISODate)).arg(rxworst.end.toString(Qt::ISODate)) + tr("Date: %1 - %2").arg(rxworst.start.toString(Qt::SystemLocaleShortDate)).arg(rxworst.end.toString(Qt::SystemLocaleShortDate)) + "
";