summaryrefslogtreecommitdiff
path: root/src/qdoc/main.cpp
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@qt.io>2017-06-16 11:35:52 +0200
committerMartin Smith <martin.smith@qt.io>2017-09-06 15:19:24 +0000
commit771e5010359607f47c1ca149ffd8d75203742186 (patch)
tree352b1006841e83de0c0136c2db736dd5ffafb3e9 /src/qdoc/main.cpp
parentdf3661dc5493191979d71b0b5610533234890a77 (diff)
downloadqttools-771e5010359607f47c1ca149ffd8d75203742186.tar.gz
qdoc: Use clang to parse \fn commands
qdoc now uses clang to parse \fn commands. It even handles the multiple \fn case. Change-Id: I259fcdfc1bf180d32ef1cc9886a48aa3006e18fb Reviewed-by: Martin Smith <martin.smith@qt.io>
Diffstat (limited to 'src/qdoc/main.cpp')
-rw-r--r--src/qdoc/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/main.cpp b/src/qdoc/main.cpp
index 8bdf0039d..3534abc0e 100644
--- a/src/qdoc/main.cpp
+++ b/src/qdoc/main.cpp
@@ -250,7 +250,6 @@ static void processQdocconfFile(const QString &fileName)
config.load(fileName);
QString project = config.getString(CONFIG_PROJECT);
QString moduleHeader = config.getString(CONFIG_MODULEHEADER);
- //qDebug() << "Start project:" << project;
/*
Add the defines to the configuration variables.
*/
@@ -273,6 +272,7 @@ static void processQdocconfFile(const QString &fileName)
phase += "prepare phase ";
else if (Generator::generating())
phase += "generate phase ";
+
QString msg = "Running qdoc for " + config.getString(CONFIG_PROJECT) + phase;
Location::logToStdErr(msg);