mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-05-28 00:30:23 -04:00
Remove conditions for no longer supported Qt versions
This commit is contained in:
parent
92e4271e84
commit
7c7fa73020
@ -20,7 +20,7 @@
|
||||
#include <string.h>
|
||||
|
||||
// Avoid rotation on buggy Qts (see also https://bugreports.qt.io/browse/QTBUG-126575)
|
||||
#if (QT_VERSION >= QT_VERSION_CHECK(6, 5, 7) && QT_VERSION < QT_VERSION_CHECK(6, 6, 0)) || (QT_VERSION >= QT_VERSION_CHECK(6, 7, 3))
|
||||
#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 3)
|
||||
#ifndef JXL_QT_AUTOTRANSFORM
|
||||
#define JXL_QT_AUTOTRANSFORM
|
||||
#endif
|
||||
|
@ -962,11 +962,7 @@ bool XCFImageFormat::loadImageProperties(QDataStream &xcf_io, XCFImage &xcf_imag
|
||||
case PROP_PARASITES:
|
||||
while (!property.atEnd()) {
|
||||
char *tag;
|
||||
#if QT_VERSION < QT_VERSION_CHECK(6, 7, 0)
|
||||
quint32 size;
|
||||
#else
|
||||
qint64 size;
|
||||
#endif
|
||||
|
||||
property.readBytes(tag, size);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user