mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-22 15:48:50 -04:00
I throw in the towel. Prompt to log QSO when *either* RRR or 73 is sent.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7431 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
+4
-2
@@ -142,9 +142,11 @@ namespace
|
||||
|
||||
bool message_is_73 (int type, QStringList const& msg_parts)
|
||||
{
|
||||
qDebug() << type;
|
||||
return type >= 0
|
||||
&& (((type < 6 || 7 == type) && msg_parts.contains ("73"))
|
||||
|| (type == 6 && !msg_parts.filter ("73").isEmpty ()));
|
||||
&& (((type < 6 || 7 == type)
|
||||
&& (msg_parts.contains ("73") or msg_parts.contains ("RRR")))
|
||||
|| (type == 6 && !msg_parts.filter ("73").isEmpty ()));
|
||||
}
|
||||
|
||||
int ms_minute_error ()
|
||||
|
||||
Reference in New Issue
Block a user