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
e1f57bcb
Commit
e1f57bcb
authored
May 19, 2010
by
Erik Verbruggen
Browse files
Tune down the colors of the Application Output pane a bit.
Reviewed-by: con
parent
58cbf845
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/outputformatter.cpp
View file @
e1f57bcb
...
...
@@ -105,11 +105,11 @@ void OutputFormatter::initFormats()
// NormalMessageFormat
m_formats
[
NormalMessageFormat
].
setFont
(
boldFont
);
m_formats
[
NormalMessageFormat
].
setForeground
(
QColor
(
Qt
::
bl
ack
));
m_formats
[
NormalMessageFormat
].
setForeground
(
QColor
(
Qt
::
bl
ue
));
// ErrorMessageFormat
m_formats
[
ErrorMessageFormat
].
setFont
(
boldFont
);
m_formats
[
ErrorMessageFormat
].
setForeground
(
QColor
(
Qt
::
red
));
m_formats
[
ErrorMessageFormat
].
setForeground
(
QColor
(
200
,
0
,
0
));
// StdOutFormat
m_formats
[
StdOutFormat
].
setFont
(
font
);
...
...
@@ -117,7 +117,7 @@ void OutputFormatter::initFormats()
// StdErrFormat
m_formats
[
StdErrFormat
].
setFont
(
font
);
m_formats
[
StdErrFormat
].
setForeground
(
QColor
(
Qt
::
red
));
m_formats
[
StdErrFormat
].
setForeground
(
QColor
(
200
,
0
,
0
));
}
void
OutputFormatter
::
setFormat
(
Format
theFormat
)
const
...
...
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