summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/projectexplorer/gnumakeparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/gnumakeparser.cpp b/src/plugins/projectexplorer/gnumakeparser.cpp
index c8f028633e..e478255382 100644
--- a/src/plugins/projectexplorer/gnumakeparser.cpp
+++ b/src/plugins/projectexplorer/gnumakeparser.cpp
@@ -105,7 +105,7 @@ void GnuMakeParser::stdError(const QString &line)
m_suppressIssues = true;
QString description = m_makeLine.cap(8);
Task::TaskType type = Task::Error;
- if (description.startsWith(QLatin1String("warning: "))) {
+ if (description.startsWith(QLatin1String("warning: "), Qt::CaseInsensitive)) {
description = description.mid(9);
type = Task::Warning;
}