RagePhoto: Fix Qt4 build
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
0c6c6ca9fb
commit
05ccdc6689
1 changed files with 5 additions and 0 deletions
|
@ -612,7 +612,9 @@ void RagePhoto::save(QIODevice *ioDevice, PhotoFormat photoFormat)
|
||||||
uInt32ToCharLE(&p_endOfFile, uInt32Buffer);
|
uInt32ToCharLE(&p_endOfFile, uInt32Buffer);
|
||||||
ioDevice->write(uInt32Buffer, 4);
|
ioDevice->write(uInt32Buffer, 4);
|
||||||
|
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
ioDevice->aboutToClose();
|
ioDevice->aboutToClose();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
else if (photoFormat == PhotoFormat::GTA5) {
|
else if (photoFormat == PhotoFormat::GTA5) {
|
||||||
char uInt32Buffer[4];
|
char uInt32Buffer[4];
|
||||||
|
@ -703,7 +705,10 @@ void RagePhoto::save(QIODevice *ioDevice, PhotoFormat photoFormat)
|
||||||
|
|
||||||
ioDevice->seek(p_endOfFile + 260);
|
ioDevice->seek(p_endOfFile + 260);
|
||||||
ioDevice->write("JEND", 4);
|
ioDevice->write("JEND", 4);
|
||||||
|
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
ioDevice->aboutToClose();
|
ioDevice->aboutToClose();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue