Enable ";" messages to work properly for Hounds with complex callsigns.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8656 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2018-05-10 19:07:31 +00:00
parent a8524c6183
commit 1095b758cc

View File

@ -2976,7 +2976,8 @@ void MainWindow::readFromStdout() //readFromStdout
auto_tx_mode(false);
on_logQSOButton_clicked();
}
if(w.at(2)==m_config.my_callsign() and ui->tx3->text().length()>0) {
if((w.at(2)==m_config.my_callsign() or w.at(2)==Radio::base_callsign(m_config.my_callsign()))
and ui->tx3->text().length()>0) {
m_rptRcvd=w.at(4);
m_rptSent=decodedtext.string().mid(7,3);
m_nFoxFreq=decodedtext.string().mid(16,4).toInt();