From 331a2e57ca223dfa6b85e87ee4e4a6762b304957 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Tue, 27 Feb 2018 03:01:44 +0000 Subject: [PATCH] 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 --- logbook/countrydat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logbook/countrydat.cpp b/logbook/countrydat.cpp index 85fd2f793..b66f0664e 100644 --- a/logbook/countrydat.cpp +++ b/logbook/countrydat.cpp @@ -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; }