hotfix: remove instances of qWarning for a successful *nix build
Some checks failed
Build Porymap / build-qt5-linux (push) Has been cancelled
Build Porymap / build-macos (push) Has been cancelled
Build Porymap / build-static-windows (push) Has been cancelled

This commit is contained in:
Muhammad Nauman Raza 2025-01-07 11:11:51 +00:00
parent 83a57c145c
commit fe209f9061
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -136,7 +136,6 @@ bool QGifImagePrivate::load(QIODevice *device)
int error;
GifFileType *gifFile = DGifOpen(device, readFromIODevice, &error);
if (!gifFile) {
qWarning(GifErrorString(error));
return false;
}
@ -228,7 +227,6 @@ bool QGifImagePrivate::save(QIODevice *device) const
int error;
GifFileType *gifFile = EGifOpen(device, writeToIODevice, &error);
if (!gifFile) {
qWarning(GifErrorString(error));
return false;
}