From 50216ef103b5a46b5300471ad90bfddd37517f3e Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 8 Dec 2017 21:20:50 +0000 Subject: [PATCH] Another tweak. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8303 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index d3583dd6e..6e0225740 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -2834,7 +2834,7 @@ void MainWindow::readFromStdout() //readFromStdout (decodedtext.string().contains("R+") or decodedtext.string().contains("R-"))) { QString houndCall,houndGrid; decodedtext.deCallAndGrid(/*out*/houndCall,houndGrid); - foxRxSequencer(houndCall,houndGrid); + foxRxSequencer(decodedtext,houndCall,houndGrid); } //Left (Band activity) window @@ -7239,7 +7239,7 @@ void MainWindow::houndCallers() } } -void MainWindow::foxRxSequencer(QString houndCall, QString houndGrid) +void MainWindow::foxRxSequencer(DecodedText decodedtext, QString houndCall, QString houndGrid) { /* Called from "readFromStdOut()" to process decoded messages of the form * "myCall houndCall R+rpt". @@ -7254,6 +7254,14 @@ void MainWindow::foxRxSequencer(QString houndCall, QString houndGrid) m_houndRptRcvd[i]=houndGrid.mid(1); int i1=qMax(m_foxMsgSent[i].indexOf("+"), m_foxMsgSent[i].indexOf("-")); m_foxMsgToBeSent[i]=m_foxMsgSent[i].mid(0,i1-1) + " RR73"; + +//### + qDebug() << "CC" << houndCall << m_baseCall; + ui->decodedTextBrowser2->displayDecodedText(decodedtext,m_baseCall,false, + m_logBook,m_config.color_CQ(),m_config.color_MyCall(), + m_config.color_DXCC(),m_config.color_NewCall(),m_config.ppfx()); +//### + } else { m_foxMsgToBeSent[i]=m_foxMsgSent[i]; }