Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
QImage result{};
if (fileName.isEmpty() || !customColor.isValid()) {
- qWarning(lcIconUtils) << "invalid fileName or customColor";
+ qCWarning(lcIconUtils) << "invalid fileName or customColor";
return result;
}
Q_ASSERT(!sourceSvg.isEmpty());
if (sourceSvg.isEmpty()) {
- qWarning(lcIconUtils) << "Failed to find base SVG file for" << fileName;
+ qCWarning(lcIconUtils) << "Failed to find base SVG file for" << fileName;
return result;
}
Q_ASSERT(!result.isNull());
if (result.isNull()) {
- qWarning(lcIconUtils) << "Failed to load pixmap for" << fileName;
+ qCWarning(lcIconUtils) << "Failed to load pixmap for" << fileName;
}
return result;