Skip to content

Commit ecd4bd5

Browse files
committed
Fixed #1010 - Remove AN from the WAC award
Based on the rules, AN should not be included
1 parent a96b111 commit ecd4bd5

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

Changelog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ TBC - 0.50.0
1717
- Updated debian packaging (PR @979 thx @dawkagaming)
1818
- Hamlib rigctld switching between VFO A/B doesnt change the band mode - added workaround (issue #999)
1919
- Awards internal redesign
20+
- Removed AN from the WAC award (issue #1010)
2021

2122
2026/03/19 - 0.49.1
2223
- Fixed Online Map OSM Access Blocked banner (issue #956)

awards/AwardWAC.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
#include <QCoreApplication>
22
#include "AwardWAC.h"
33

4+
5+
/* https://www.arrl.org/wac */
6+
47
QString AwardWAC::displayName() const
58
{
69
return QCoreApplication::translate("AwardsDialog", "WAC");
@@ -31,8 +34,8 @@ QStringList AwardWAC::additionalCTEs(const QString &, const QString &) const
3134
{ QStringLiteral("EU"), QCoreApplication::translate("AwardsDialog", "Europe") },
3235
{ QStringLiteral("AF"), QCoreApplication::translate("AwardsDialog", "Africa") },
3336
{ QStringLiteral("OC"), QCoreApplication::translate("AwardsDialog", "Oceania") },
34-
{ QStringLiteral("AS"), QCoreApplication::translate("AwardsDialog", "Asia") },
35-
{ QStringLiteral("AN"), QCoreApplication::translate("AwardsDialog", "Antarctica") } }) };
37+
{ QStringLiteral("AS"), QCoreApplication::translate("AwardsDialog", "Asia") }
38+
}) };
3639
}
3740

3841
QString AwardWAC::clickFilter(const QString &, const QString &col2Value) const

0 commit comments

Comments
 (0)