Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
f8aa2c99
Commit
f8aa2c99
authored
Nov 11, 2009
by
Kai Koehne
Browse files
Fix compilation
Always recompile after a rebase :)
parent
925c686d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/gccparser.cpp
View file @
f8aa2c99
...
...
@@ -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
);
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment