Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
3d2e5667
Commit
3d2e5667
authored
Jul 07, 2010
by
Tobias Hunger
Browse files
Small improvements to the abld parser
* Should work better with errors that can happen during deployment
parent
5956db6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/qt4projectmanager/qt-s60/abldparser.cpp
View file @
3d2e5667
...
...
@@ -62,7 +62,8 @@ void AbldParser::stdOutput(const QString &line)
TASK_CATEGORY_BUILDSYSTEM
));
return
;
}
if
(
lne
.
startsWith
(
QLatin1String
(
"FATAL ERROR:"
)))
{
if
(
lne
.
startsWith
(
QLatin1String
(
"FATAL ERROR:"
))
||
lne
.
startsWith
(
QLatin1String
(
"Error :"
)))
{
emit
addTask
(
Task
(
Task
::
Error
,
lne
/* description */
,
QString
()
/* filename */
,
...
...
@@ -91,6 +92,14 @@ void AbldParser::stdOutput(const QString &line)
return
;
}
if
(
lne
.
startsWith
(
QLatin1String
(
"SIS creation failed!"
)))
{
m_waitingForStdOutContinuation
=
false
;
emit
addTask
(
Task
(
Task
::
Error
,
line
,
QString
(),
-
1
,
TASK_CATEGORY_BUILDSYSTEM
));
return
;
}
if
(
lne
.
isEmpty
())
{
m_waitingForStdOutContinuation
=
false
;
return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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