forked from qt-creator/qt-creator
RunControl: qCDebug(LOG()) --> qCDebug(LOG)
Change-Id: I31ae029e2bd66badebfb40dc026d7de2158c4c13 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
This commit is contained in:
@@ -116,9 +116,9 @@ bool ClangStaticAnalyzerRunControl::startEngine()
|
||||
|
||||
// Collect files
|
||||
const QList<SourceFileConfiguration> filesToProcess = calculateFilesToProcess(project);
|
||||
qCDebug(LOG()) << "Files to process:";
|
||||
qCDebug(LOG) << "Files to process:";
|
||||
foreach (const SourceFileConfiguration &fileConfig, filesToProcess) {
|
||||
qCDebug(LOG()) << fileConfig.file.path + QLatin1String(" [")
|
||||
qCDebug(LOG) << fileConfig.file.path + QLatin1String(" [")
|
||||
+ fileConfig.projectPart->projectFile + QLatin1Char(']');
|
||||
}
|
||||
m_filesToProcess = filesToProcess;
|
||||
|
Reference in New Issue
Block a user