summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@jollamobile.com>2014-06-19 00:51:20 +0200
committerRobin Burchell <robin+qt@viroteck.net>2014-07-01 10:56:02 +0200
commit685655c4a5606a2448331c890b9bdf0047db957c (patch)
treefecfcd715a9303ad0be6fddf167fc8429e0a52ce /src/tools
parentfebded23536e1e3f4c572ee54ef618aad4164c43 (diff)
qdoc: Add header file debug output to match source file debug output
Change-Id: If8c941be42986704e9ac4da056a6c4b2490e6131 Reviewed-by: Martin Smith <martin.smith@digia.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdoc/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/qdoc/main.cpp b/src/tools/qdoc/main.cpp
index aba9956604..e42262f8d5 100644
--- a/src/tools/qdoc/main.cpp
+++ b/src/tools/qdoc/main.cpp
@@ -462,6 +462,7 @@ static void processQdocconfFile(const QString &fileName)
CodeParser *codeParser = CodeParser::parserForHeaderFile(h.key());
if (codeParser) {
++parsed;
+ Generator::debug(QString("Parsing " + h.key()));
codeParser->parseHeaderFile(config.location(), h.key());
usedParsers.insert(codeParser);
}