Icons: Move Run/Stop/Interrupt from projectexplorer to core

Change-Id: Iba65c2ede538049c9b203fd4c2f99ef552019862
Reviewed-by: Alessandro Portale <alessandro.portale@theqtcompany.com>
This commit is contained in:
Alessandro Portale
2016-04-10 22:08:05 +02:00
parent a792f37c88
commit 9373f76b2a
25 changed files with 49 additions and 43 deletions

View File

@@ -3539,7 +3539,7 @@ QAction *createStartAction()
QAction *createStopAction()
{
auto action = new QAction(DebuggerMainWindow::tr("Stop"), DebuggerPlugin::instance());
action->setIcon(ProjectExplorer::Icons::STOP_SMALL.icon());
action->setIcon(Core::Icons::STOP_SMALL.icon());
action->setEnabled(true);
return action;
}