Merge tag 'wsjtx-2.1.1' into develop

Tagging the WSJT-X v2.1.1 release
This commit is contained in:
Bill Somerville
2019-11-24 21:24:39 +00:00
36 changed files with 1471 additions and 1231 deletions
+2 -1
View File
@@ -1024,7 +1024,8 @@ QString HRDTransceiver::send_command (QString const& cmd, bool no_debug, bool pr
if (!recurse && prepend_context)
{
auto radio_name = send_command ("get radio", true, current_radio_, true);
auto radio_iter = std::find_if (radios_.begin (), radios_.end (), [&radio_name] (RadioMap::value_type const& radio)
qDebug () << "HRDTransceiver::send_command: radio_name:" << radio_name;
auto radio_iter = std::find_if (radios_.begin (), radios_.end (), [this, &radio_name] (RadioMap::value_type const& radio)
{
return std::get<1> (radio) == radio_name;
});