diff options
author | Martin Smith <[email protected]> | 2014-08-19 15:27:27 +0200 |
---|---|---|
committer | Martin Smith <[email protected]> | 2014-08-20 21:59:53 +0200 |
commit | 6b12d781faf3802e336923ddc43a822da7546989 (patch) | |
tree | 4ba363cde0b7ced9c18468ac9ffa42fc46a07067 /src/tools/qdoc/cppcodemarker.h | |
parent | a2c432e97818ec16ead9be0d0aee3e43cf10929e (diff) |
qdoc: Generate obsolete members page for QML types
Generation of the obsolete members page, for QML types
that have obsolete members, had not been implemented.
This update implements that missing feature. The link
to the page appears right below the link to the "All
Members" page.
Change-Id: I3e4bb2a68d5c8ef2bbe2e0c431eccf94ecb1fd3c
Task-number: QTBUG-40214
Reviewed-by: Mitch Curtis <[email protected]>
Reviewed-by: Topi Reiniƶ <[email protected]>
Diffstat (limited to 'src/tools/qdoc/cppcodemarker.h')
-rw-r--r-- | src/tools/qdoc/cppcodemarker.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/qdoc/cppcodemarker.h b/src/tools/qdoc/cppcodemarker.h index 74faf1ca57a..0b920a8b391 100644 --- a/src/tools/qdoc/cppcodemarker.h +++ b/src/tools/qdoc/cppcodemarker.h @@ -78,7 +78,9 @@ public: virtual QList<Section> sections(const InnerNode *innerNode, SynopsisStyle style, Status status); - virtual QList<Section> qmlSections(QmlClassNode* qmlClassNode, SynopsisStyle style); + virtual QList<Section> qmlSections(QmlClassNode* qmlClassNode, + SynopsisStyle style, + Status status = Okay); private: QString addMarkUp(const QString& protectedCode, |