summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2024-03-01 12:37:33 +0100
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2024-03-01 19:00:33 +0100
commit7bde3f4c4c6b4c27ce4ce45b6735d61f405ea53b (patch)
tree96d5909260ef03b3a63bc6bf945adbaa030efa20 /src/tools
parent83f73df3e0e07242ce355fa12ae818fbb0ed6d03 (diff)
Fix spelling of FFmpeg in (end-)user-visible string of windeployqt
It's two capital "FF", lowercase "mpeg". Pick-to: 6.7 6.6 6.5 Change-Id: I4eca719fa6ce0133e3ddb6163c81e24493b378e3 Reviewed-by: Kai Köhne <kai.koehne@qt.io> Reviewed-by: Artem Dyomin <artem.dyomin@qt.io>
Diffstat (limited to 'src/tools')
-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 a5da2e7c6a..c3a89400d4 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));