From 11807f0db2c8d5998f33fa3b9d5f83c630371f27 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 20 Nov 2013 16:57:27 +0100 Subject: [PATCH] Polish taskbar-icon for build issues Change-Id: I5998bdabc80e59972446b1f8806ac8703ed5a729 Reviewed-by: Eike Ziller --- src/plugins/coreplugin/core.qrc | 1 + .../coreplugin/images/compile_error_taskbar.png | Bin 0 -> 618 bytes .../progressmanager/progressmanager_win.cpp | 2 +- 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 src/plugins/coreplugin/images/compile_error_taskbar.png diff --git a/src/plugins/coreplugin/core.qrc b/src/plugins/coreplugin/core.qrc index d54182e37b..6fd7523c22 100644 --- a/src/plugins/coreplugin/core.qrc +++ b/src/plugins/coreplugin/core.qrc @@ -3,6 +3,7 @@ images/clean_pane_small.png images/clear.png images/closebutton.png + images/compile_error_taskbar.png images/dir.png images/editcopy.png images/editcut.png diff --git a/src/plugins/coreplugin/images/compile_error_taskbar.png b/src/plugins/coreplugin/images/compile_error_taskbar.png new file mode 100644 index 0000000000000000000000000000000000000000..71dd4ede4252aee11066fc6eb12552bd027bc193 GIT binary patch literal 618 zcmV-w0+s!VP)cTXnk&Pl1!7XL9Oi8sHq@6{A#sZ0V&*ad`sRKi(eEEDkmARsaA107*qoM6N<$ Ef@^yPbN~PV literal 0 HcmV?d00001 diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp index 39ad2439de..1f04e55d47 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp @@ -122,7 +122,7 @@ void Core::Internal::ProgressManagerPrivate::doSetApplicationLabel(const QString if (text.isEmpty()) { pITask->SetOverlayIcon(winId, NULL, NULL); } else { - QPixmap pix = QPixmap(QLatin1String(":/projectexplorer/images/compile_error.png")); + QPixmap pix = QPixmap(QLatin1String(":/core/images/compile_error_taskbar.png")); QPainter p(&pix); p.setPen(Qt::white); QFont font = p.font(); -- GitLab