From 94a723925b201ce2bdec9390c422b75473cff642 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 9 Sep 2017 20:54:56 +0000 Subject: [PATCH] Fix issue with Tx5 message generation for type 2 compound calls git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8079 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- mainwindow.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index b86293786..f458fd87d 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -4155,8 +4155,7 @@ void MainWindow::genStdMsgs(QString rpt, bool unconditional) msgtype(t + "RRR", ui->tx4); } else { - t=t0 + "R" + rpt; - msgtype(t, ui->tx3); + msgtype(t0 + "R" + rpt, ui->tx3); } } msgtype(t + "73", ui->tx5->lineEdit ());