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
d244efe1
Commit
d244efe1
authored
Jan 11, 2011
by
con
Browse files
Fix format of "foo existed with code n" message.
Broke by recent refactorings. Reviewed-by: Tobias Hunger
parent
4116504c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/localapplicationruncontrol.cpp
View file @
d244efe1
...
...
@@ -132,7 +132,7 @@ void LocalApplicationRunControl::processExited(int exitCode)
{
QString
msg
=
tr
(
"%1 exited with code %2"
)
.
arg
(
QDir
::
toNativeSeparators
(
m_executable
)).
arg
(
exitCode
);
appendMessage
(
msg
,
Error
MessageFormat
);
appendMessage
(
msg
,
Normal
MessageFormat
);
emit
finished
();
}
...
...
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