Valgrind: Fix missing pause icon

Task-number: QTCREATORBUG-11836

Change-Id: Id38cecac418754adf61834ccc343420c31fb4f48
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Christian Stenger
2014-03-25 12:45:51 +01:00
committed by hjk
parent 672a2c4ea6
commit c4fa365cbb
7 changed files with 4 additions and 4 deletions

View File

@@ -696,7 +696,7 @@ QWidget *CallgrindToolPrivate::createWidgets()
// pause action
action = new QAction(this);
action->setCheckable(true);
action->setIcon(QIcon(QLatin1String(":/qml/images/pause-small.png")));
action->setIcon(QIcon(QLatin1String(Core::Constants::ICON_PAUSE)));
//action->setText(tr("Ignore"));
action->setToolTip(tr("Pause event logging. No events are counted which will speed up program execution during profiling."));
connect(action, SIGNAL(toggled(bool)), this, SIGNAL(pauseToggled(bool)));