forked from qt-creator/qt-creator
Android: Don't quote log lines with path names
Change-Id: I70f23af46bd6c8318971b20727e4010889bdcebc Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
@@ -181,7 +181,8 @@ void SplashScreenWidget::setImageFromPath(const FilePath &imagePath, bool resize
|
||||
emit imageChanged();
|
||||
}
|
||||
else {
|
||||
qCDebug(androidManifestEditorLog) << "Cannot save image.";
|
||||
qCDebug(androidManifestEditorLog).noquote()
|
||||
<< "Cannot save image." << targetPath.toUserOutput();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -231,7 +232,8 @@ void SplashScreenWidget::loadImage()
|
||||
}
|
||||
QImage image = QImage(targetPath.toString());
|
||||
if (image.isNull()) {
|
||||
qCDebug(androidManifestEditorLog) << "Cannot load image.";
|
||||
qCDebug(androidManifestEditorLog).noquote()
|
||||
<< "Cannot load image." << targetPath.toUserOutput();
|
||||
return;
|
||||
}
|
||||
if (m_showImageFullScreen) {
|
||||
|
||||
Reference in New Issue
Block a user