aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-09-28 12:40:33 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-09-28 13:26:58 +0200
commit709f30f1a83c9c65b82f689fc67cd23fc2ba9696 (patch)
tree62ee9e320a26e04c29543f3929d068441254382f /tools
parent4cd06638c198c7ed48680c63e9df943e3680e89e (diff)
qmllint: Consistently spell "Warning"
There was one place where it was written in lower case. Change-Id: Id953fa6c260502ab5bca8cfa061c817bb5a70581 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmllint/findwarnings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmllint/findwarnings.cpp b/tools/qmllint/findwarnings.cpp
index e06305b47b..0131921928 100644
--- a/tools/qmllint/findwarnings.cpp
+++ b/tools/qmllint/findwarnings.cpp
@@ -367,7 +367,7 @@ void FindWarningVisitor::importExportedNames(ScopeTree::ConstPtr scope)
} else if (auto newScope = scope->baseType()) {
scope = newScope;
} else {
- m_colorOut.write(QLatin1String("warning: "), Warning);
+ m_colorOut.write(QLatin1String("Warning: "), Warning);
m_colorOut.write(scope->baseTypeName()
+ QLatin1String(" was not found."
" Did you add all import paths?\n"));