Fix erroneous country worked before check for KG4 non-gitmo calls

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@8536 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Bill Somerville 2018-02-27 03:01:44 +00:00
parent 80a1deea65
commit 331a2e57ca
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ QString CountryDat::fixup (QString country, QString const& call) const
// KG4 2x1 and 2x3 calls that map to Gitmo are mainland US not Gitmo
if (call.startsWith ("KG4") && call.size () != 5)
{
country.replace ("Guantanamo Bay", "United States");
country.replace ("Guantanamo Bay; KG4; NA", "United States; K; NA");
}
return country;
}