summaryrefslogtreecommitdiff
path: root/src/qdoc/cppcodeparser.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@qt.io>2019-03-15 13:26:01 +0100
committerMartin Smith <martin.smith@qt.io>2019-04-02 09:57:18 +0000
commitd1da1ab17ab72efa85f9543bcfc6c13aa3dec45a (patch)
tree3759645b94196ab25447746d972a13238aad6318 /src/qdoc/cppcodeparser.h
parentf8f047366f82e2faa291824452ec13b648380307 (diff)
downloadqttools-d1da1ab17ab72efa85f9543bcfc6c13aa3dec45a.tar.gz
qdoc: Eliminate need for the property group commands
We have been using the \qmlpropertygroup command to document complex properties. we also have the \jspropertygroup but it hasn't been used. However, we also have the shared comment concept, which we have used for documenting groups of functions. This update changes qdoc to use the shared comment concept for QML and JS property groups. The property groups commands are therefore no longer needed. But there are several uses of the \qmlpropertygroup command, and qdoc still recognizes these, although it uses the shared comment concept to handle them. The property group commands will be removed from the qdoc manual in a later update. Change-Id: Ie98638546756fd1a70067a7cd483c3b962c02954 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'src/qdoc/cppcodeparser.h')
-rw-r--r--src/qdoc/cppcodeparser.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/qdoc/cppcodeparser.h b/src/qdoc/cppcodeparser.h
index 491ffb4cd..3d3f6a52c 100644
--- a/src/qdoc/cppcodeparser.h
+++ b/src/qdoc/cppcodeparser.h
@@ -73,12 +73,7 @@ protected:
virtual Node* processTopicCommand(const Doc& doc,
const QString& command,
const ArgLocPair& arg);
- void processQmlProperties(const Doc& doc, NodeList& nodes, DocList& docs, bool jsProps);
- bool splitQmlPropertyGroupArg(const QString& arg,
- QString& module,
- QString& element,
- QString& name,
- const Location& location);
+ void processQmlProperties(const Doc &doc, NodeList &nodes, DocList &docs);
bool splitQmlPropertyArg(const QString& arg,
QString& type,
QString& module,