Skip to content

Commit

Permalink
Fixed compilation issue under QT6
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Jan 1, 2025
1 parent 29ae151 commit 649591d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data/DxSpot.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ class DxSpot
+ "Callsign: " + callsign + " "
+ "Message: " + comment + " "
+ "DX Member: " + memberList2StringList().join(", ") + " "
+ "POTA: " + potaRef + " " + "POTA present: " + containsPOTA + " "
+ "SOTA: " + sotaRef + " " + "SOTA present: " + containsSOTA + " "
+ "WWFF: " + wwffRef + " " + "WWFF present: " + containsWWFF + " "
+ "IOTA: " + iotaRef + " " + "IOTA present: " + containsIOTA + " ";
+ "POTA: " + potaRef + " " + "POTA present: " + (containsPOTA ? "true" : "false") + " "
+ "SOTA: " + sotaRef + " " + "SOTA present: " + (containsSOTA ? "true" : "false") + " "
+ "WWFF: " + wwffRef + " " + "WWFF present: " + (containsWWFF ? "true" : "false") + " "
+ "IOTA: " + iotaRef + " " + "IOTA present: " + (containsIOTA ? "true" : "false") + " ";
}
};

Expand Down

0 comments on commit 649591d

Please sign in to comment.