Transmit entry should be JS8 not FT8

This commit is contained in:
Jordan Sherer 2018-10-17 14:17:53 -04:00
parent 9162d851d4
commit 55810e63a6

View File

@ -10190,7 +10190,7 @@ void MainWindow::write_transmit_entry (QString const& file_name)
auto dt = DecodedText(m_currentMessage); auto dt = DecodedText(m_currentMessage);
out << time.toString("yyyy-MM-dd hh:mm:ss") out << time.toString("yyyy-MM-dd hh:mm:ss")
<< " Transmitting " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6) << " Transmitting " << qSetRealNumberPrecision (12) << (m_freqNominal / 1.e6)
<< " MHz " << m_modeTx << " MHz " << QString(m_modeTx).replace("FT8", "JS8")
<< ": " << dt.message() << endl; << ": " << dt.message() << endl;
f.close(); f.close();
} }