From 93ef19b232cd0da91d56f0032030df487b56d900 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Thu, 24 Mar 2016 20:55:28 +0100 Subject: [PATCH] iOS: Set the proper runcontrol icon This is the only RunControl which set another icon than ProjectExplorer::Icons::RUN_SMALL. I assume that was a mistake. Change-Id: I1c31909827c03b2c9b7acb0488eb269ef30c2a34 Reviewed-by: hjk --- src/plugins/ios/iosruncontrol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/ios/iosruncontrol.cpp b/src/plugins/ios/iosruncontrol.cpp index 90b276119c4..47e019a6e6b 100644 --- a/src/plugins/ios/iosruncontrol.cpp +++ b/src/plugins/ios/iosruncontrol.cpp @@ -28,8 +28,8 @@ #include "iosrunconfiguration.h" #include "iosrunner.h" -#include #include +#include using namespace ProjectExplorer; @@ -41,7 +41,7 @@ IosRunControl::IosRunControl(IosRunConfiguration *rc) , m_runner(new IosRunner(this, rc, false, QmlDebug::NoQmlDebugServices)) , m_running(false) { - setIcon(Core::Icons::DEBUG_START_SMALL); + setIcon(Icons::RUN_SMALL); } IosRunControl::~IosRunControl()