mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2026-09-20 06:37:00 -04:00
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
This commit is contained in:
@@ -963,7 +963,7 @@ bool XCFImageFormat::loadImageProperties(QDataStream &xcf_io, XCFImage &xcf_imag
|
|||||||
#if QT_VERSION < QT_VERSION_CHECK(6, 7, 0)
|
#if QT_VERSION < QT_VERSION_CHECK(6, 7, 0)
|
||||||
quint32 size;
|
quint32 size;
|
||||||
#else
|
#else
|
||||||
qsizetype size;
|
qint64 size;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
property.readBytes(tag, size);
|
property.readBytes(tag, size);
|
||||||
|
|||||||
Reference in New Issue
Block a user