From 3d2d91a08a17f86bbdbd082aa297568070706392 Mon Sep 17 00:00:00 2001 From: Ahmad Samir Date: Thu, 3 Feb 2022 16:34:06 +0200 Subject: [PATCH] Fix typo, should be qCWarning GIT_SILENT --- src/imageformats/eps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imageformats/eps.cpp b/src/imageformats/eps.cpp index edb5939..6fa9f6c 100644 --- a/src/imageformats/eps.cpp +++ b/src/imageformats/eps.cpp @@ -179,7 +179,7 @@ bool EPSHandler::read(QImage *image) const QString gsExec = QStandardPaths::findExecutable(QStringLiteral("gs")); if (gsExec.isEmpty()) { - qWarning(EPSPLUGIN) << "Couldn't find gs exectuable (from GhostScript) in PATH."; + qCWarning(EPSPLUGIN) << "Couldn't find gs exectuable (from GhostScript) in PATH."; return false; }