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;