From 1df2101b11d4548f2a9cde8a4faffadd21b741f6 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 22 Jun 2021 12:24:18 -0400 Subject: [PATCH] Fix the generation of Tx5 message when "hiscall" has suffix /P or /R. Is there a better method? --- widgets/mainwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index cf18df9bc..7958b79ce 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -5535,7 +5535,8 @@ void MainWindow::genStdMsgs(QString rpt, bool unconditional) msgtype(t, ui->tx5->lineEdit ()); } } else { - if (hisCall != hisBase and SpecOp::HOUND != m_config.special_op_id()) { + if (hisCall != hisBase && hisCall != (hisBase+"/P") && hisCall != (hisBase+"/R") + && SpecOp::HOUND != m_config.special_op_id()) { if (shortList(hisCall)) { // cfm we know his full call with a type 1 tx1 message t = hisCall + " " + my_callsign;