diff --git a/src/plugins/projectexplorer/buildprogress.cpp b/src/plugins/projectexplorer/buildprogress.cpp index 6c519a1a40d..e8cbcfbe9b7 100644 --- a/src/plugins/projectexplorer/buildprogress.cpp +++ b/src/plugins/projectexplorer/buildprogress.cpp @@ -87,8 +87,10 @@ BuildProgress::BuildProgress(TaskWindow *taskWindow, Qt::Orientation orientation m_errorIcon->setAlignment(Qt::AlignRight); m_warningIcon->setAlignment(Qt::AlignRight); - m_errorIcon->setPixmap(QPixmap(QLatin1String(Core::Constants::ICON_ERROR))); - m_warningIcon->setPixmap(QPixmap(QLatin1String(Core::Constants::ICON_WARNING))); + 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_contentWidget->hide();