diff options
author | Martin Smith <martin.smith@qt.io> | 2019-03-15 13:26:01 +0100 |
---|---|---|
committer | Martin Smith <martin.smith@qt.io> | 2019-04-02 09:57:18 +0000 |
commit | d1da1ab17ab72efa85f9543bcfc6c13aa3dec45a (patch) | |
tree | 3759645b94196ab25447746d972a13238aad6318 /src/qdoc/qmlcodeparser.cpp | |
parent | f8f047366f82e2faa291824452ec13b648380307 (diff) | |
download | qttools-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/qmlcodeparser.cpp')
-rw-r--r-- | src/qdoc/qmlcodeparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qdoc/qmlcodeparser.cpp b/src/qdoc/qmlcodeparser.cpp index b19c43bcb..437bcfd21 100644 --- a/src/qdoc/qmlcodeparser.cpp +++ b/src/qdoc/qmlcodeparser.cpp @@ -169,7 +169,7 @@ const QSet<QString>& QmlCodeParser::topicCommands() << COMMAND_QMLCLASS << COMMAND_QMLTYPE << COMMAND_QMLPROPERTY - << COMMAND_QMLPROPERTYGROUP + << COMMAND_QMLPROPERTYGROUP // mws 13/03/2019 << COMMAND_QMLATTACHEDPROPERTY << COMMAND_QMLSIGNAL << COMMAND_QMLATTACHEDSIGNAL @@ -178,7 +178,7 @@ const QSet<QString>& QmlCodeParser::topicCommands() << COMMAND_QMLBASICTYPE << COMMAND_JSTYPE << COMMAND_JSPROPERTY - << COMMAND_JSPROPERTYGROUP + << COMMAND_JSPROPERTYGROUP // mws 13/03/2019 << COMMAND_JSATTACHEDPROPERTY << COMMAND_JSSIGNAL << COMMAND_JSATTACHEDSIGNAL |