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 <hjk@theqtcompany.com>
This commit is contained in:
Alessandro Portale
2016-03-24 20:55:28 +01:00
parent f9a49118dd
commit 93ef19b232

View File

@@ -28,8 +28,8 @@
#include "iosrunconfiguration.h"
#include "iosrunner.h"
#include <coreplugin/coreicons.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/projectexplorericons.h>
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()