summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2024-03-01 12:37:33 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2024-03-01 18:00:50 +0000
commit67c5cbb8e18359d8c6260d1043ca970d3ddc4f92 (patch)
tree3d100d2b75fe897466c546fc162fc9593b1527df
parentdd52aed32026efd169c31703209cc7d375548e48 (diff)
Fix spelling of FFmpeg in (end-)user-visible string of windeployqt
It's two capital "FF", lowercase "mpeg". Pick-to: 6.6 6.5 Change-Id: I4eca719fa6ce0133e3ddb6163c81e24493b378e3 Reviewed-by: Kai Köhne <kai.koehne@qt.io> Reviewed-by: Artem Dyomin <artem.dyomin@qt.io> (cherry picked from commit 7bde3f4c4c6b4c27ce4ce45b6735d61f405ea53b) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/tools/windeployqt/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/windeployqt/main.cpp b/src/tools/windeployqt/main.cpp
index d60a8ee098..80b6df5a06 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<QString, QString>
}
} // 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));