Fix swapped sent and received reports in Fox log window

This commit is contained in:
Bill Somerville 2018-11-12 18:26:05 +00:00
parent f850b09315
commit 018a1218ce
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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_};

View File

@ -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;