Fix compilation

Always recompile after a rebase :)
This commit is contained in:
Kai Koehne
2009-11-11 10:15:54 +01:00
parent 925c686d85
commit f8aa2c9951

View File

@@ -101,12 +101,12 @@ void GccParser::stdError(const QString & line)
lne //description lne //description
); );
} else if (lne.startsWith(QLatin1String("collect2:"))) { } 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:"))) { } else if (lne.startsWith(QLatin1String("ERROR:"))) {
// Triggered by cpp on windows. // 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")) { } else if (lne == QLatin1String("* cpp failed")) {
// Triggered by cpp/make on windows. // Triggered by cpp/make on windows.
emit addToTaskWindow(QString(), ProjectExplorer::BuildParserInterface::Error, -1, lne); emit addToTaskWindow(QString(), TaskWindow::Error, -1, lne);
} }
} }