forked from qt-creator/qt-creator
Clang: Fix usage of QString args
Change-Id: I49f1a79b9dfd27d896b296d65d375a05879bdc8f Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
committed by
Orgad Shaneh
parent
0769b0d65f
commit
9e27c865f5
@@ -449,7 +449,7 @@ void ClangToolRunControl::finalize()
|
|||||||
const QString toolName = tool()->name();
|
const QString toolName = tool()->name();
|
||||||
appendMessage(tr("%1 finished: "
|
appendMessage(tr("%1 finished: "
|
||||||
"Processed %2 files successfully, %3 failed.")
|
"Processed %2 files successfully, %3 failed.")
|
||||||
.arg(toolName, m_filesAnalyzed, m_filesNotAnalyzed),
|
.arg(toolName).arg(m_filesAnalyzed).arg(m_filesNotAnalyzed),
|
||||||
Utils::NormalMessageFormat);
|
Utils::NormalMessageFormat);
|
||||||
|
|
||||||
if (m_filesNotAnalyzed != 0) {
|
if (m_filesNotAnalyzed != 0) {
|
||||||
|
Reference in New Issue
Block a user