From c2c12b1d7e38728e7533f1346deca0270973d22d Mon Sep 17 00:00:00 2001 From: Antonio Rojas Date: Thu, 11 Apr 2024 08:30:45 +0200 Subject: [PATCH] Fix build with Qt 6.7 on 32 bits Qt changed the argument type again in https://invent.kde.org/qt/qt/qtbase/-/commit/0ed34d19926c60f3b74a58723c5c36f366e99d95 --- src/imageformats/xcf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageformats/xcf.cpp b/src/imageformats/xcf.cpp index 7d8bccf..7af41d1 100644 --- a/src/imageformats/xcf.cpp +++ b/src/imageformats/xcf.cpp @@ -963,7 +963,7 @@ bool XCFImageFormat::loadImageProperties(QDataStream &xcf_io, XCFImage &xcf_imag #if QT_VERSION < QT_VERSION_CHECK(6, 7, 0) quint32 size; #else - qsizetype size; + qint64 size; #endif property.readBytes(tag, size);