ClangTools: Fix placeholder in tr()

Change-Id: I90727287ebdbe12b8e422e7e91adc9f3e5abafbd
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Nikolai Kosjar
2020-05-14 09:00:17 +02:00
parent 2c5d6de9b4
commit 567b61eee5

View File

@@ -1208,7 +1208,7 @@ void ClangTool::updateForCurrentState()
// Info bar: diagnostic stats // Info bar: diagnostic stats
QString diagText; QString diagText;
if (issuesFound) { if (issuesFound) {
diagText = tr("%1 diagnostics. %2 fixits, %4 selected.") diagText = tr("%1 diagnostics. %2 fixits, %3 selected.")
.arg(issuesVisible) .arg(issuesVisible)
.arg(m_diagnosticFilterModel->fixitsScheduable()) .arg(m_diagnosticFilterModel->fixitsScheduable())
.arg(m_diagnosticFilterModel->fixitsScheduled()); .arg(m_diagnosticFilterModel->fixitsScheduled());