summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/analyzer
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2016-08-03 17:55:54 +0200
committerUlf Hermann <ulf.hermann@qt.io>2016-08-05 10:52:53 +0000
commit15fbfaf2e94b72cfd54bb0bd6f2b9ab87b870795 (patch)
treee0ec09f6b6b97f0a9b61fd3b27c379cc84d1f3ce /src/plugins/debugger/analyzer
parent5d6f5ff2c969046cd19c13a5b7bb0775c9925ea3 (diff)
downloadqt-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/debugger/analyzer')
-rw-r--r--src/plugins/debugger/analyzer/detailederrorview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/analyzer/detailederrorview.cpp b/src/plugins/debugger/analyzer/detailederrorview.cpp
index 38ea2f7a24..874e304aaa 100644
--- a/src/plugins/debugger/analyzer/detailederrorview.cpp
+++ b/src/plugins/debugger/analyzer/detailederrorview.cpp
@@ -27,10 +27,10 @@
#include "diagnosticlocation.h"
-#include <coreplugin/coreicons.h>
#include <coreplugin/editormanager/editormanager.h>
#include <utils/qtcassert.h>
+#include <utils/utilsicons.h>
#include <QAbstractTextDocumentLayout>
#include <QAction>
@@ -127,7 +127,7 @@ DetailedErrorView::DetailedErrorView(QWidget *parent) :
setItemDelegateForColumn(LocationColumn, new Internal::DetailedErrorDelegate(this));
m_copyAction->setText(tr("Copy"));
- m_copyAction->setIcon(Core::Icons::COPY.icon());
+ m_copyAction->setIcon(Utils::Icons::COPY.icon());
m_copyAction->setShortcut(QKeySequence::Copy);
m_copyAction->setShortcutContext(Qt::WidgetWithChildrenShortcut);
connect(m_copyAction, &QAction::triggered, [this] {