diff options
author | Ulf Hermann <ulf.hermann@qt.io> | 2016-08-03 17:55:54 +0200 |
---|---|---|
committer | Ulf Hermann <ulf.hermann@qt.io> | 2016-08-05 10:52:53 +0000 |
commit | 15fbfaf2e94b72cfd54bb0bd6f2b9ab87b870795 (patch) | |
tree | e0ec09f6b6b97f0a9b61fd3b27c379cc84d1f3ce /src/plugins/coreplugin/progressmanager | |
parent | 5d6f5ff2c969046cd19c13a5b7bb0775c9925ea3 (diff) | |
download | qt-creator-15fbfaf2e94b72cfd54bb0bd6f2b9ab87b870795.tar.gz |
Move icons to Utils
This way we can use them from libraries, not only from plugins.
Change-Id: Ic35cfd5f04d638d87606bf272b2c00ded1267c1b
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
Diffstat (limited to 'src/plugins/coreplugin/progressmanager')
-rw-r--r-- | src/plugins/coreplugin/progressmanager/progressmanager_win.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp index c6d0fa848c..5286ce007d 100644 --- a/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp +++ b/src/plugins/coreplugin/progressmanager/progressmanager_win.cpp @@ -35,7 +35,7 @@ #include <qpa/qplatformnativeinterface.h> #include <coreplugin/icore.h> -#include <coreplugin/coreicons.h> +#include <utils/utilsicons.h> #include "progressmanager_p.h" @@ -109,7 +109,7 @@ void Core::Internal::ProgressManagerPrivate::doSetApplicationLabel(const QString if (text.isEmpty()) { pITask->SetOverlayIcon(winId, NULL, NULL); } else { - QPixmap pix = Core::Icons::ERROR_TASKBAR.pixmap(); + QPixmap pix = Utils::Icons::ERROR_TASKBAR.pixmap(); pix.setDevicePixelRatio(1); // We want device-pixel sized font depending on the pix.height QPainter p(&pix); p.setPen(Qt::white); |