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
Tobias Hunger
qt-creator
Commits
3fa6aa30
Commit
3fa6aa30
authored
Jun 15, 2010
by
dt
Browse files
Fix wrong output in compile output
Reviewed-By: ossi
parent
7bf0ff8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/abstractprocessstep.cpp
View file @
3fa6aa30
...
...
@@ -213,7 +213,7 @@ void AbstractProcessStep::processFinished(int exitCode, QProcess::ExitStatus sta
}
else
if
(
status
==
QProcess
::
NormalExit
)
{
textCharFormat
.
setForeground
(
Qt
::
red
);
textCharFormat
.
setFontWeight
(
QFont
::
Bold
);
emit
addOutput
(
tr
(
"The process
\"
%1
\"
exited with code %2."
).
arg
(
m_command
,
m_process
->
exitCode
()),
textCharFormat
);
emit
addOutput
(
tr
(
"The process
\"
%1
\"
exited with code %2."
).
arg
(
m_command
,
QString
::
number
(
m_process
->
exitCode
())
)
,
textCharFormat
);
}
else
{
textCharFormat
.
setForeground
(
Qt
::
red
);
textCharFormat
.
setFontWeight
(
QFont
::
Bold
);
...
...
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