Skip to content

Commit

Permalink
Fixed compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Nov 15, 2024
1 parent 13d9460 commit 4c241e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/AlertEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ AlertRule::operator QString() const
+ "Enabled: " + QString::number(enabled) + "; "
+ "SourceMap: 0b" + QString::number(sourceMap,2) + "; "
+ "dxCallsign: " + dxCallsign + "; "
+ "CQZ: " + cqz + "; "
+ "ITUZ: " + ituz + "; "
+ "CQZ: " + QString::number(cqz) + "; "
+ "ITUZ: " + QString::number(ituz) + "; "
+ "dxMember: " + dxMember.join(", ") + "; "
+ "dxCountry: " + QString::number(dxCountry) + "; "
+ "dxLogStatusMap: 0b" + QString::number(dxLogStatusMap,2) + "; "
Expand Down

0 comments on commit 4c241e0

Please sign in to comment.