Clang Tools: Fix UI text capitalization

Change-Id: I2466706699b82cdcd41e285aa68185eabd4bbb40
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Leena Miettinen
2020-07-02 11:29:59 +02:00
parent 00e814fdd1
commit 3bee2353c2

View File

@@ -472,7 +472,7 @@ ClangTool::ClangTool()
// Load diagnostics from file // Load diagnostics from file
action = new QAction(this); action = new QAction(this);
action->setIcon(Utils::Icons::OPENFILE_TOOLBAR.icon()); action->setIcon(Utils::Icons::OPENFILE_TOOLBAR.icon());
action->setToolTip(tr("Load Diagnostics from YAML Files exported with \"-export-fixes\".")); action->setToolTip(tr("Load diagnostics from YAML files exported with \"-export-fixes\"."));
connect(action, &QAction::triggered, this, &ClangTool::loadDiagnosticsFromFiles); connect(action, &QAction::triggered, this, &ClangTool::loadDiagnosticsFromFiles);
m_loadExported = action; m_loadExported = action;