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-02 11:08:38 +0000
commit39f3d56185231b5192d903a5336e4251b140709b (patch)
tree2b77c37fa6162b292c27e334190888bd99187892
parent2cec73ae80ad0c86b5c6628f1864e53ef33cdf4f (diff)
Fix spelling of FFmpeg in (end-)user-visible string of windeployqt
It's two capital "FF", lowercase "mpeg". Pick-to: 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> (cherry picked from commit 67c5cbb8e18359d8c6260d1043ca970d3ddc4f92)
-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 98391715ec..87f5a96371 100644
--- a/src/tools/windeployqt/main.cpp
+++ b/src/tools/windeployqt/main.cpp
@@ -468,7 +468,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);
@@ -1596,7 +1596,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));