From 018a1218ce995d2760c4ec34e36484caea3a905f Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 12 Nov 2018 18:26:05 +0000 Subject: [PATCH] Fix swapped sent and received reports in Fox log window --- NetworkMessage.hpp | 2 +- models/FoxLog.cpp | 2 +- models/FoxLog.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NetworkMessage.hpp b/NetworkMessage.hpp index acf64fb32..ffd0ff288 100644 --- a/NetworkMessage.hpp +++ b/NetworkMessage.hpp @@ -231,7 +231,7 @@ * DX grid utf8 * Tx frequency (Hz) quint64 * Mode utf8 - * Report send utf8 + * Report sent utf8 * Report received utf8 * Tx power utf8 * Comments utf8 diff --git a/models/FoxLog.cpp b/models/FoxLog.cpp index 7703abdbf..81763d9be 100644 --- a/models/FoxLog.cpp +++ b/models/FoxLog.cpp @@ -83,7 +83,7 @@ namespace } bool FoxLog::add_QSO (QDateTime const& when, QString const& call, QString const& grid - , QString const& report_received, QString const& report_sent + , QString const& report_sent, QString const& report_received , QString const& band) { ConditionalTransaction transaction {*m_}; diff --git a/models/FoxLog.hpp b/models/FoxLog.hpp index 0412b5980..028f8205c 100644 --- a/models/FoxLog.hpp +++ b/models/FoxLog.hpp @@ -17,7 +17,7 @@ public: // returns false if insert fails, dupe call+band bool add_QSO (QDateTime const&, QString const& call, QString const& grid - , QString const& report_received, QString const& report_sent + , QString const& report_sent, QString const& report_received , QString const& band); bool dupe (QString const& call, QString const& band) const;