mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-07-18 03:54:18 -04:00
Don't warn the user/developer about something he can't fix
image formats are loaded via qimage/qimagereader and friends, the user/developer does not choose which ones will be used so giving him a warning about sequential devices not being supported is not going to help anyone, only spam their shell/logs. REVIEW: 123156 Acked by David Edmundson
This commit is contained in:
@ -219,7 +219,7 @@ bool RASHandler::canRead(QIODevice *device)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (device->isSequential()) {
|
if (device->isSequential()) {
|
||||||
qWarning("Reading ras files from sequential devices not supported");
|
// qWarning("Reading ras files from sequential devices not supported");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user