From d704b495dce1a402e1792068cc1fbd06b1227ed0 Mon Sep 17 00:00:00 2001 From: Rodrigo Torres Date: Tue, 24 Aug 2021 04:30:38 -0300 Subject: [PATCH] Fix version --- limereport/items/lrtextitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limereport/items/lrtextitem.cpp b/limereport/items/lrtextitem.cpp index a29289a..0effd5d 100644 --- a/limereport/items/lrtextitem.cpp +++ b/limereport/items/lrtextitem.cpp @@ -452,7 +452,7 @@ QString TextItem::formatNumber(const double value) if (m_format.contains("%")) { -#if QT_VERSION < 0x050000 +#if QT_VERSION < 0x050500 str.sprintf(m_format.toStdString().c_str(), value); #else str.asprintf(m_format.toStdString().c_str(), value);