From 55af0977492f67ac752963aa3d8c7efa5026aff8 Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Sun, 29 Mar 2015 23:20:28 +0200 Subject: [PATCH] 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 --- src/imageformats/ras.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageformats/ras.cpp b/src/imageformats/ras.cpp index 9d8bb32..516b47e 100644 --- a/src/imageformats/ras.cpp +++ b/src/imageformats/ras.cpp @@ -219,7 +219,7 @@ bool RASHandler::canRead(QIODevice *device) } if (device->isSequential()) { - qWarning("Reading ras files from sequential devices not supported"); + // qWarning("Reading ras files from sequential devices not supported"); return false; }