aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/localapplicationruncontrol.cpp
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/projectexplorer/localapplicationruncontrol.cpp
parent5d6f5ff2c969046cd19c13a5b7bb0775c9925ea3 (diff)
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/projectexplorer/localapplicationruncontrol.cpp')
-rw-r--r--src/plugins/projectexplorer/localapplicationruncontrol.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/projectexplorer/localapplicationruncontrol.cpp b/src/plugins/projectexplorer/localapplicationruncontrol.cpp
index 3d8bcc7656..d6a2357d89 100644
--- a/src/plugins/projectexplorer/localapplicationruncontrol.cpp
+++ b/src/plugins/projectexplorer/localapplicationruncontrol.cpp
@@ -31,8 +31,7 @@
#include <projectexplorer/kitinformation.h>
#include <projectexplorer/target.h>
-#include <coreplugin/coreicons.h>
-
+#include <utils/utilsicons.h>
#include <utils/qtcassert.h>
#include <QDir>
@@ -63,7 +62,7 @@ LocalApplicationRunControl::LocalApplicationRunControl(RunConfiguration *rc, Cor
: RunControl(rc, mode)
{
setRunnable(rc->runnable());
- setIcon(Core::Icons::RUN_SMALL_TOOLBAR);
+ setIcon(Utils::Icons::RUN_SMALL_TOOLBAR);
connect(&m_applicationLauncher, &ApplicationLauncher::appendMessage,
this, static_cast<void(RunControl::*)(const QString &, Utils::OutputFormat)>(&RunControl::appendMessage));
connect(&m_applicationLauncher, &ApplicationLauncher::processStarted,