From 168682571f1f5803b27cd062df0bc735c917c39d Mon Sep 17 00:00:00 2001 From: Nikolai Kosjar Date: Fri, 24 Oct 2014 10:24:16 +0200 Subject: [PATCH] RunControl: qCDebug(LOG()) --> qCDebug(LOG) Change-Id: I31ae029e2bd66badebfb40dc026d7de2158c4c13 Reviewed-by: Nikolai Kosjar --- plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp b/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp index ea583e5161a..595514697eb 100644 --- a/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp +++ b/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp @@ -116,9 +116,9 @@ bool ClangStaticAnalyzerRunControl::startEngine() // Collect files const QList 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;