summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-07-04 18:15:12 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-07-05 07:19:10 +0000
commit6bbf06477f6508b84b4fdf2a885ac880013f1892 (patch)
tree992ff656c4e93337fe23828ad8384c2359c2112f
parent22816bbca678178804386d6eea6e57b2a0a647eb (diff)
downloadqttools-6bbf06477f6508b84b4fdf2a885ac880013f1892.tar.gz
windeployqt: Add missing \n to warning message
Change-Id: Ia761dcdfb35d0439bfd60ba1fd0c56ce44ea45f3 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
-rw-r--r--src/windeployqt/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/windeployqt/main.cpp b/src/windeployqt/main.cpp
index 928e50931..b987a64f3 100644
--- a/src/windeployqt/main.cpp
+++ b/src/windeployqt/main.cpp
@@ -1573,7 +1573,7 @@ static bool deployWebEngineCore(const QMap<QString, QString> &qmakeVariables,
+ QStringLiteral("/qtwebengine_locales"));
if (!translations.isDir()) {
std::wcerr << "Warning: Cannot find the translation files of the QtWebEngine module at "
- << QDir::toNativeSeparators(translations.absoluteFilePath()) << '.';
+ << QDir::toNativeSeparators(translations.absoluteFilePath()) << ".\n";
return true;
}
if (options.translations) {