Skip to content

Commit 8197431

Browse files
committed
Fixed compilation issue under QT6 (2)
1 parent 649591d commit 8197431

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/AlertEvaluator.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ AlertRule::operator QString() const
360360
+ "dxCallsign: " + dxCallsign + "; "
361361
+ "CQZ: " + QString::number(cqz) + "; "
362362
+ "ITUZ: " + QString::number(ituz) + "; "
363-
+ "POTA: " + pota + "; "
364-
+ "SOTA: " + sota + "; "
365-
+ "IOTA: " + iota + "; "
366-
+ "WWFF: " + wwff + "; "
363+
+ "POTA: " + (pota ? "true" : "false") + "; "
364+
+ "SOTA: " + (sota ? "true" : "false") + "; "
365+
+ "IOTA: " + (iota ? "true" : "false") + "; "
366+
+ "WWFF: " + (wwff ? "true" : "false") + "; "
367367
+ "dxMember: " + dxMember.join(", ") + "; "
368368
+ "dxCountry: " + QString::number(dxCountry) + "; "
369369
+ "dxLogStatusMap: 0b" + QString::number(dxLogStatusMap,2) + "; "

0 commit comments

Comments
 (0)