aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/buildprogress.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@theqtcompany.com>2015-12-04 19:21:05 +0100
committerAlessandro Portale <alessandro.portale@theqtcompany.com>2015-12-08 13:05:54 +0000
commit09d03825fcd2786e73b251c020136dd212f39f97 (patch)
treed2e547d18c9e562d1923ce87a767d899469fe754 /src/plugins/projectexplorer/buildprogress.cpp
parentee6399fd2e0171fdc1085cfaf1c112739e3c02fa (diff)
Core: Better warning/error/info icons on non-toolbars
The warning/error/info with shadow and transparent mark work well on our toolbars but not anywhere else. This patch creates a separate set of these icons with better contrast, filled marks and no shadow. Change-Id: I96787753dffd80b325336f0adc8e3be054c34618 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.cpp')
-rw-r--r--src/plugins/projectexplorer/buildprogress.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp
index 219fbbff1c..e9a1584d30 100644
--- a/src/plugins/projectexplorer/buildprogress.cpp
+++ b/src/plugins/projectexplorer/buildprogress.cpp
@@ -87,8 +87,8 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow, Qt::Orientation orientation
m_errorIcon->setAlignment(Qt::AlignRight);
m_warningIcon->setAlignment(Qt::AlignRight);
- m_errorIcon->setPixmap(Core::Icons::ERROR.pixmap());
- m_warningIcon->setPixmap(Core::Icons::WARNING.pixmap());
+ m_errorIcon->setPixmap(Core::Icons::ERROR_TOOLBAR.pixmap());
+ m_warningIcon->setPixmap(Core::Icons::WARNING_TOOLBAR.pixmap());
m_contentWidget->hide();