RunControl: qCDebug(LOG()) --> qCDebug(LOG)

Change-Id: I31ae029e2bd66badebfb40dc026d7de2158c4c13
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2014-10-24 10:24:16 +02:00
parent 3163b602e1
commit 168682571f

View File

@@ -116,9 +116,9 @@ bool ClangStaticAnalyzerRunControl::startEngine()
// Collect files // Collect files
const QList<SourceFileConfiguration> filesToProcess = calculateFilesToProcess(project); const QList<SourceFileConfiguration> filesToProcess = calculateFilesToProcess(project);
qCDebug(LOG()) << "Files to process:"; qCDebug(LOG) << "Files to process:";
foreach (const SourceFileConfiguration &fileConfig, filesToProcess) { foreach (const SourceFileConfiguration &fileConfig, filesToProcess) {
qCDebug(LOG()) << fileConfig.file.path + QLatin1String(" [") qCDebug(LOG) << fileConfig.file.path + QLatin1String(" [")
+ fileConfig.projectPart->projectFile + QLatin1Char(']'); + fileConfig.projectPart->projectFile + QLatin1Char(']');
} }
m_filesToProcess = filesToProcess; m_filesToProcess = filesToProcess;