From 9a2bb37a91d22a816fe912d7a15abde298402af9 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Fri, 29 Sep 2017 16:58:05 +0000 Subject: [PATCH] Previous commit message should have mentioned a fix to "stdmsg.f90" that was preventing double-click on a JT65 "OOO" message from populating message fields. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8143 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- lib/stdmsg.f90 | 2 ++ mainwindow.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/stdmsg.f90 b/lib/stdmsg.f90 index f93d88bb1..599287bb6 100644 --- a/lib/stdmsg.f90 +++ b/lib/stdmsg.f90 @@ -1,5 +1,7 @@ function stdmsg(msg0,bcontest,mygrid) + ! Is msg0 a standard "JT-style" message? + use iso_c_binding, only: c_bool use packjt character*22 msg0,msg1,msg diff --git a/mainwindow.cpp b/mainwindow.cpp index 04486fe6e..90d38a572 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -3809,7 +3809,6 @@ void MainWindow::processMessage(DecodedText const& message, bool shift, bool ctr } auto is_73 = message_words.filter (QRegularExpression {"^(73|RR73)$"}).size (); - qDebug() << "a" << is_73 << bool(message.isStandardMessage()) << !message.isStandardMessage() << nWarn; if (!is_73 and !message.isStandardMessage() and (nWarn==0)) { qDebug () << "Not processing message - hiscall:" << hiscall << "hisgrid:" << hisgrid; return;