From 22a9195326968cb1384b400837387938a876d7cb Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 17 May 2016 20:45:32 +0000 Subject: [PATCH] Allow for extra character after mode when matching UDP reply to CQ messages git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6682 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 24af93100..dfecdd857 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4933,7 +4933,7 @@ void MainWindow::replyToCQ (QTime time, qint32 snr, float delta_time, quint32 de if (decode_parts.contains ("CQ") || decode_parts.contains ("QRZ")) { // a message we are willing to accept - QString format_string {"%1 %2 %3 %4 %5 %6"}; + QString format_string {"%1 %2 %3 %4 %5 %6"}; auto cqtext = format_string.arg (time.toString ("hhmm")) .arg (snr, 3) .arg (delta_time, 4, 'f', 1)