Valgrind: Use OPENFILE_TOOLBAR in toolbars

Change-Id: Ib154f6352006b827b771d033eddc939ac4dc6dfe
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2018-02-12 11:40:14 +01:00
parent 89053aca81
commit cebb667023
2 changed files with 2 additions and 2 deletions

View File

@@ -364,7 +364,7 @@ CallgrindTool::CallgrindTool()
// load external log file // load external log file
action = m_loadExternalLogFile = new QAction(this); action = m_loadExternalLogFile = new QAction(this);
action->setIcon(Utils::Icons::OPENFILE.icon()); action->setIcon(Utils::Icons::OPENFILE_TOOLBAR.icon());
action->setToolTip(tr("Load External Log File")); action->setToolTip(tr("Load External Log File"));
connect(action, &QAction::triggered, this, &CallgrindTool::loadExternalLogFile); connect(action, &QAction::triggered, this, &CallgrindTool::loadExternalLogFile);

View File

@@ -599,7 +599,7 @@ MemcheckTool::MemcheckTool()
// Load external XML log file // Load external XML log file
auto action = new QAction(this); auto action = new QAction(this);
action->setIcon(Icons::OPENFILE.icon()); action->setIcon(Icons::OPENFILE_TOOLBAR.icon());
action->setToolTip(tr("Load External XML Log File")); action->setToolTip(tr("Load External XML Log File"));
connect(action, &QAction::triggered, this, &MemcheckTool::loadExternalXmlLogFile); connect(action, &QAction::triggered, this, &MemcheckTool::loadExternalXmlLogFile);
m_loadExternalLogFile = action; m_loadExternalLogFile = action;