Skip to content
Snippets Groups Projects
Commit f8aa2c99 authored by Kai Koehne's avatar Kai Koehne
Browse files

Fix compilation

Always recompile after a rebase :)
parent 925c686d
No related branches found
No related tags found
No related merge requests found
......@@ -101,12 +101,12 @@ void GccParser::stdError(const QString & line)
lne //description
);
} else if (lne.startsWith(QLatin1String("collect2:"))) {
emit addToTaskWindow("", ProjectExplorer::BuildParserInterface::Error, -1, lne);
emit addToTaskWindow("", TaskWindow::Error, -1, lne);
} else if (lne.startsWith(QLatin1String("ERROR:"))) {
// Triggered by cpp on windows.
emit addToTaskWindow(QString(), ProjectExplorer::BuildParserInterface::Error, -1, lne);
emit addToTaskWindow(QString(), TaskWindow::Error, -1, lne);
} else if (lne == QLatin1String("* cpp failed")) {
// Triggered by cpp/make on windows.
emit addToTaskWindow(QString(), ProjectExplorer::BuildParserInterface::Error, -1, lne);
emit addToTaskWindow(QString(), TaskWindow::Error, -1, lne);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment