Fix build with Qt 6.7 on 32 bits

Qt changed the argument type again in 0ed34d1992
This commit is contained in:
Antonio Rojas 2024-04-11 08:30:45 +02:00
parent c169296fbf
commit c2c12b1d7e

View File

@ -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);