From cf793dc63d8d52143a028ee14246aa434d174e32 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Thu, 11 Jul 2013 07:38:03 +0300 Subject: MakeParser: Do not show "Warning" as error Change-Id: I61e6dd689d8f24402f6ac5bb0fb109ecc1a26831 Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/gnumakeparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } -- cgit v1.2.1