From 4c241e0fe8879e894b471357dd766d9bde30a156 Mon Sep 17 00:00:00 2001 From: Ladislav Foldyna Date: Fri, 15 Nov 2024 10:52:38 +0100 Subject: [PATCH] Fixed compilation issue --- core/AlertEvaluator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/AlertEvaluator.cpp b/core/AlertEvaluator.cpp index 0abc71db..eb19e295 100644 --- a/core/AlertEvaluator.cpp +++ b/core/AlertEvaluator.cpp @@ -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) + "; "