aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2014-10-24 10:24:16 +0200
committerNikolai Kosjar <nikolai.kosjar@theqtcompany.com>2014-10-24 11:28:08 +0300
commit168682571f1f5803b27cd062df0bc735c917c39d (patch)
treea768b585dd2d94507d2744405bfa447575b656c3
parent3163b602e1dd81e3fd958514df461f1986cf9b33 (diff)
RunControl: qCDebug(LOG()) --> qCDebug(LOG)
Change-Id: I31ae029e2bd66badebfb40dc026d7de2158c4c13 Reviewed-by: Nikolai Kosjar <nikolai.kosjar@theqtcompany.com>
-rw-r--r--plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp b/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp
index ea583e5161..595514697e 100644
--- a/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp
+++ b/plugins/clangstaticanalyzer/clangstaticanalyzerruncontrol.cpp
@@ -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;