mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-21 19:55:20 -05:00
Fix swapped sent and received reports in Fox log window
This commit is contained in:
parent
f850b09315
commit
018a1218ce
@ -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
|
||||
|
@ -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_};
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user