From 7bde3f4c4c6b4c27ce4ce45b6735d61f405ea53b Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Fri, 1 Mar 2024 12:37:33 +0100 Subject: [PATCH] Fix spelling of FFmpeg in (end-)user-visible string of windeployqt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's two capital "FF", lowercase "mpeg". Pick-to: 6.7 6.6 6.5 Change-Id: I4eca719fa6ce0133e3ddb6163c81e24493b378e3 Reviewed-by: Kai Köhne Reviewed-by: Artem Dyomin --- src/tools/windeployqt/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp index a5da2e7c6a2..c3a89400d49 100644 --- a/src/tools/windeployqt/main.cpp +++ b/src/tools/windeployqt/main.cpp @@ -473,7 +473,7 @@ static inline int parseArguments(const QStringList &arguments, QCommandLineParse parser->addOption(suppressSoftwareRasterizerOption); QCommandLineOption noFFmpegOption(QStringLiteral("no-ffmpeg"), - QStringLiteral("Do not deploy the ffmpeg libraries.")); + QStringLiteral("Do not deploy the FFmpeg libraries.")); parser->addOption(noFFmpegOption); @@ -1598,7 +1598,7 @@ static DeployResult deploy(const Options &options, const QMap } } // Windows - // Add ffmpeg if we deploy the ffmpeg backend + // Add FFmpeg if we deploy the FFmpeg backend if (options.ffmpeg && !plugins.filter(QStringLiteral("ffmpegmediaplugin"), Qt::CaseInsensitive).empty()) { deployedQtLibraries.append(findFFmpegLibs(qtBinDir, options.platform));