diff options
author | Alessandro Portale <alessandro.portale@theqtcompany.com> | 2015-10-19 12:55:13 +0200 |
---|---|---|
committer | Alessandro Portale <alessandro.portale@theqtcompany.com> | 2015-10-23 16:04:52 +0000 |
commit | b8bdc6f669d0949292be217e84fe046ea8450e1c (patch) | |
tree | adf7521912f2c28b3b571049938f81ce0146207e /src/plugins/projectexplorer/buildprogress.cpp | |
parent | e6d038364fe44d96b93fa2f5e40334e7ecad13c2 (diff) | |
download | qt-creator-b8bdc6f669d0949292be217e84fe046ea8450e1c.tar.gz |
Icon refresh: First step towards the new Qt Creator themes
http://blog.qt.io/blog/author/didesous/ announced new designs/themes
for Qt Creator. This patch replaces many of the existing toolbar icons
with recolorizable masks for better theming support.
Change-Id: I557aa485205fe2624f33724226f698c303342b40
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
Diffstat (limited to 'src/plugins/projectexplorer/buildprogress.cpp')
-rw-r--r-- | src/plugins/projectexplorer/buildprogress.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp index f96d85b76f..c44194a952 100644 --- a/src/plugins/projectexplorer/buildprogress.cpp +++ b/src/plugins/projectexplorer/buildprogress.cpp @@ -33,6 +33,7 @@ #include <coreplugin/coreconstants.h> #include <utils/stylehelper.h> +#include <utils/themehelper.h> #include <QVBoxLayout> #include <QHBoxLayout> @@ -87,10 +88,10 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow, Qt::Orientation orientation m_errorIcon->setAlignment(Qt::AlignRight); m_warningIcon->setAlignment(Qt::AlignRight); - m_errorIcon->setPixmap(QPixmap(Utils::StyleHelper::dpiSpecificImageFile( - QLatin1String(Core::Constants::ICON_ERROR)))); - m_warningIcon->setPixmap(QPixmap(Utils::StyleHelper::dpiSpecificImageFile( - QLatin1String(Core::Constants::ICON_WARNING)))); + m_errorIcon->setPixmap(Utils::ThemeHelper::themedIconPixmap( + QLatin1String(Core::Constants::ICON_ERROR))); + m_warningIcon->setPixmap(Utils::ThemeHelper::themedIconPixmap( + QLatin1String(Core::Constants::ICON_WARNING))); m_contentWidget->hide(); |