Allow the logQSO dialog to modify "Rcvd" in NA VHF mode and have the changes flow through to N1MM.

This commit is contained in:
Joe Taylor 2018-12-20 12:42:39 -05:00
parent 9fd64f48de
commit c1b1daf9db
1 changed files with 4 additions and 0 deletions

View File

@ -138,6 +138,10 @@ void LogQSO::accept()
using SpOp = Configuration::SpecialOperatingActivity;
auto special_op = m_config->special_op_id ();
if (special_op == SpOp::NA_VHF) {
if(xrcvd!="" and hisGrid!=xrcvd) hisGrid=xrcvd;
}
if (special_op == SpOp::RTTY) {
if(rptSent=="" or !xsent.contains(rptSent+" ")) rptSent=xsent.split(" ",QString::SkipEmptyParts).at(0);
if(rptRcvd=="" or !xrcvd.contains(rptRcvd+" ")) rptRcvd=xrcvd.split(" ",QString::SkipEmptyParts).at(0);