Skip to content

Commit

Permalink
Fixed compilation issue under QT6 (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Jan 1, 2025
1 parent 649591d commit 8197431
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/AlertEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -360,10 +360,10 @@ AlertRule::operator QString() const
+ "dxCallsign: " + dxCallsign + "; "
+ "CQZ: " + QString::number(cqz) + "; "
+ "ITUZ: " + QString::number(ituz) + "; "
+ "POTA: " + pota + "; "
+ "SOTA: " + sota + "; "
+ "IOTA: " + iota + "; "
+ "WWFF: " + wwff + "; "
+ "POTA: " + (pota ? "true" : "false") + "; "
+ "SOTA: " + (sota ? "true" : "false") + "; "
+ "IOTA: " + (iota ? "true" : "false") + "; "
+ "WWFF: " + (wwff ? "true" : "false") + "; "
+ "dxMember: " + dxMember.join(", ") + "; "
+ "dxCountry: " + QString::number(dxCountry) + "; "
+ "dxLogStatusMap: 0b" + QString::number(dxLogStatusMap,2) + "; "
Expand Down

0 comments on commit 8197431

Please sign in to comment.