From 7350eb0892aecb48fe116d85d3ca21078a80382b Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Mon, 29 Aug 2016 17:01:22 +0000 Subject: [PATCH] Strip decode quality information from decoded messages before parsing by double click git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7037 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 6ff066732..4a2442839 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3195,7 +3195,8 @@ void MainWindow::processMessage(QString const& messages, int position, bool ctrl ntsec = ntsec + t2.mid(4,2).toInt(); t2a=t2.mid(0,4) + t2.mid(6,-1); //Change hhmmss to hhmm for the message parser } else { - t2a=t2; + t2a=t2.left (44); // strip and quality info trailing the + // decoded message } if(m_bFast9) { i1=t2a.indexOf(" CQ ");