summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/cppcodeparser.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@nokia.com>2012-05-10 10:38:42 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-10 11:34:25 +0200
commit3b6b8a0f749bb20d8e83762060ac87d2ec207562 (patch)
treef72dc2cee186b912f40cfb8606b14e181408ad72 /src/tools/qdoc/cppcodeparser.h
parent47e6ec0736aa129e181e0b6f02cec884f9832432 (diff)
qdoc: Fixed a qdoc error problem
When a page exists in more than one file, qdoc was reporting this sometimes without reference to the locations of the files. This has now been fixed. Change-Id: I0697acc170b94a74b15fb384556dd76f764f7792 Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'src/tools/qdoc/cppcodeparser.h')
-rw-r--r--src/tools/qdoc/cppcodeparser.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/tools/qdoc/cppcodeparser.h b/src/tools/qdoc/cppcodeparser.h
index 0f4b5119d6a..6ae7116d9e2 100644
--- a/src/tools/qdoc/cppcodeparser.h
+++ b/src/tools/qdoc/cppcodeparser.h
@@ -89,23 +89,16 @@ protected:
virtual Node *processTopicCommand(const Doc& doc,
const QString& command,
const ArgLocPair& arg);
-#ifdef QDOC_QML
- // might need to implement this in QsCodeParser as well.
- virtual Node *processTopicCommandGroup(const Doc& doc,
- const QString& command,
- const ArgList& args);
- bool splitQmlPropertyArg(const Doc& doc,
- const QString& arg,
+ virtual Node *processTopicCommandGroup(const QString& command, const ArgList& args);
+ bool splitQmlPropertyArg(const QString& arg,
QString& type,
QString& module,
QString& element,
QString& name);
- bool splitQmlMethodArg(const Doc& doc,
- const QString& arg,
+ bool splitQmlMethodArg(const QString& arg,
QString& type,
QString& module,
QString& element);
-#endif
virtual QSet<QString> otherMetaCommands();
virtual void processOtherMetaCommand(const Doc& doc,
const QString& command,