From a0231e1417c42eb70900f26ab62af8bfa1219fdf Mon Sep 17 00:00:00 2001 From: Steven Franke Date: Wed, 20 Jul 2016 23:42:20 +0000 Subject: [PATCH] Fix QSY message when answering CQ nnn. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6933 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 0eca404e8..761c3e3a4 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3181,7 +3181,7 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl if (m_config.is_transceiver_online ()) { Frequency frequency {m_freqNominal / 1000000 * 1000000 + 1000*kHz}; //QSY Freq for answering CQ nnn QString t; - t.sprintf("QSY %7.3f", frequency / 10e6); + t.sprintf("QSY %7.3f", frequency / 1e6); ui->decodedTextBrowser2->displayQSY(t); // ui->labDialFreq->setText (Radio::pretty_frequency_MHz_string (frequency)); if (m_config.is_transceiver_online ()) {