Skip to content

Commit

Permalink
Fixed compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Dec 4, 2024
1 parent c3a6f8a commit 24472d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions data/DxSpot.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ class DxSpot
{
return QString("DxSpot ")
+ "Country: " + QString::number(dxcc.dxcc) + " "
+ "CQZ" + dxcc.cqz + " "
+ "ITUZ" + dxcc.ituz + " "
+ "Status: " + status + " "
+ "CQZ" + QString::number(dxcc.cqz) + " "
+ "ITUZ" + QString::number(dxcc.ituz) + " "
+ "Status: " + QString::number(status) + " "
+ "ModeGroup: " + modeGroupString + " "
+ "Band: " + band + " "
+ "spotter Country: " + QString::number(dxcc_spotter.dxcc) + " "
Expand Down
6 changes: 3 additions & 3 deletions data/WsjtxEntry.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class WsjtxEntry : public DxSpot
{
return QString("WsjtxEntry ")
+ "Country: " + QString::number(dxcc.dxcc) + " "
+ "CQZ" + dxcc.cqz + " "
+ "ITUZ" + dxcc.ituz + " "
+ "Status: " + status + " "
+ "CQZ" + QString::number(dxcc.cqz) + " "
+ "ITUZ" + QString::number(dxcc.ituz) + " "
+ "Status: " + QString::number(status) + " "
+ "Band: " + band + " "
+ "ModeGroup: " + ((decodedMode == "FT8") ? BandPlan::MODE_GROUP_STRING_FT8
: BandPlan::MODE_GROUP_STRING_DIGITAL ) + " "
Expand Down

0 comments on commit 24472d0

Please sign in to comment.