aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2020-02-06 23:44:24 +0100
committerAlessandro Portale <alessandro.portale@qt.io>2020-02-07 09:22:07 +0000
commit2234c517c0857fead795983e7540916e8dc430fd (patch)
tree6d5e7348fa7f2062c354e7e79acd9cb23157e666 /src/plugins/valgrind
parenta5178afb613e1e502df8b29b1b460ea3b0c12467 (diff)
Utils: Add a non-toolbar variant of the "RELOAD" icon
New icon is: Utils::Icons::RELOAD. And the toolbar variant is now Utils::Icons::RELOAD_TOOLBAR. Change-Id: I811d83c7340a717968430ac1ce4a5c708c8ddcf9 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/valgrind')
-rw-r--r--src/plugins/valgrind/callgrindtool.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/valgrind/callgrindtool.cpp b/src/plugins/valgrind/callgrindtool.cpp
index 96476929e5..41ee7ce411 100644
--- a/src/plugins/valgrind/callgrindtool.cpp
+++ b/src/plugins/valgrind/callgrindtool.cpp
@@ -396,7 +396,7 @@ CallgrindToolPrivate::CallgrindToolPrivate()
// reset action
m_resetAction = action = new QAction(this);
action->setDisabled(true);
- action->setIcon(Utils::Icons::RELOAD.icon());
+ action->setIcon(Utils::Icons::RELOAD_TOOLBAR.icon());
//action->setText(CallgrindTool::tr("Reset"));
action->setToolTip(CallgrindTool::tr("Reset all event counters."));
connect(action, &QAction::triggered, this, &CallgrindToolPrivate::resetRequested);