From cfbf21b9c17d8ec4ac047d3df477f8d1c6ac6f7b Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Wed, 9 Aug 2017 10:47:00 +0000 Subject: [PATCH] Remove html escapes from decodes text as no longer needed git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8014 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 74ac14aac..e99f3c370 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -6191,8 +6191,7 @@ void MainWindow::postWSPRDecode (bool is_new, QStringList parts) } m_messageClient->WSPR_decode (is_new, QTime::fromString (parts[0], "hhmm"), parts[1].toInt () , parts[2].toFloat (), Radio::frequency (parts[3].toFloat (), 6) - , parts[4].toInt (), parts[5].remove ("<").remove (">") - , parts[6], parts[7].toInt ()); + , parts[4].toInt (), parts[5], parts[6], parts[7].toInt ()); } void MainWindow::networkError (QString const& e) @@ -6265,7 +6264,7 @@ void MainWindow::p1ReadFromStdout() //p1readFromStdout .arg(rxFields.at(2), 5) .arg(rxFields.at(3), 11) .arg(rxFields.at(4), 4) - .arg(rxFields.at(5).leftJustified (12).replace ('<', "<").replace ('>', ">")) + .arg(rxFields.at(5).leftJustified (12)) .arg(rxFields.at(6), -6) .arg(rxFields.at(7), 3); postWSPRDecode (true, rxFields); @@ -6277,7 +6276,7 @@ void MainWindow::p1ReadFromStdout() //p1readFromStdout .arg(rxFields.at(2), 5) .arg(rxFields.at(3), 11) .arg(rxFields.at(4), 4) - .arg(rxFields.at(5).leftJustified (12).replace ('<', "<").replace ('>', ">")) + .arg(rxFields.at(5).leftJustified (12)) .arg("", -6) .arg(rxFields.at(6), 3); postWSPRDecode (true, rxFields);