Bug fix for compound callsigns used with EU VHF Contest messages.

This commit is contained in:
Joe Taylor
2020-05-13 11:54:25 -04:00
parent c97a127c68
commit e6b6a3ab5b
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -5134,7 +5134,7 @@ void MainWindow::genStdMsgs(QString rpt, bool unconditional)
}
if(SpecOp::EU_VHF==m_config.special_op_id()) {
QString a;
t="<" + t0.split(" ").at(0) + "> <" + t0.split(" ").at(1) + "> ";
t="<" + t0s.split(" ").at(0) + "> <" + t0s.split(" ").at(1) + "> ";
a = a.asprintf("%4.4d ",ui->sbSerialNumber->value());
sent=rs + a + m_config.my_grid();
}