From cb48947e9f87068892b0d1b671eb4cd65df6d3a4 Mon Sep 17 00:00:00 2001 From: Jordan Sherer Date: Wed, 3 Oct 2018 22:27:50 -0400 Subject: [PATCH] Mode name is now JS8 --- Modes.cpp | 2 +- mainwindow.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Modes.cpp b/Modes.cpp index bae1fe0..9bb115b 100644 --- a/Modes.cpp +++ b/Modes.cpp @@ -14,7 +14,7 @@ namespace char const * const mode_names[] = { "All", - "FT8CALL", + "JS8", }; std::size_t constexpr mode_names_size = sizeof (mode_names) / sizeof (mode_names[0]); } diff --git a/mainwindow.cpp b/mainwindow.cpp index 99d23b1..d0bd45b 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2786,7 +2786,7 @@ void MainWindow::setup_status_bar (bool vhf) else { if(m_mode == "FT8"){ - mode_label.setText("FT8CALL"); + mode_label.setText("JS8"); } else { mode_label.setText (m_mode); } @@ -6502,7 +6502,7 @@ void MainWindow::on_logQSOButton_clicked() //Log QSO button if(m_callActivity.contains(call)){ grid = m_callActivity[call].grid; } - m_logDlg->initLogQSO (call, grid, m_modeTx == "FT8" ? "FT8CALL" : m_modeTx, m_rptSent, m_rptRcvd, + m_logDlg->initLogQSO (call, grid, m_modeTx == "FT8" ? "JS8" : m_modeTx, m_rptSent, m_rptRcvd, m_dateTimeQSOOn, dateTimeQSOOff, m_freqNominal + ui->TxFreqSpinBox->value(), m_config.my_callsign(), m_config.my_grid(), m_config.log_as_DATA(), m_config.report_in_comments(), @@ -9735,7 +9735,7 @@ void MainWindow::processSpots() { continue; } qDebug() << "spotting call to reporting networks" << d.call << d.snr << d.freq; - pskLogReport("FT8CALL", d.freq, d.snr, d.call, d.grid); + pskLogReport("JS8", d.freq, d.snr, d.call, d.grid); aprsLogReport(d.freq, d.snr, d.call, d.grid); } }