summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/qdocdatabase.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2013-11-01 15:13:12 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-11-07 10:00:19 +0100
commit0491a7a2984393266e3be48f09b20a8deab9f4c8 (patch)
treebfb250e59da62f1f42aa2b27d27c4037b2941c8b /src/tools/qdoc/qdocdatabase.h
parent170da92d02f2e81bafc9efdf76b2c4facf6486d0 (diff)
qdoc: Don't include internal QML types
QML types marked \internal were appearing in the "All QML Types" list. These links were dead because the pages for these internal types were not being created, which was correct. Now these internal QML types no longer appear in the list. Task-number: QTBUG-34506 Change-Id: I1d005459e84ed9a2afae94b797b9d39aa3e517f3 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/tools/qdoc/qdocdatabase.h')
-rw-r--r--src/tools/qdoc/qdocdatabase.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/qdoc/qdocdatabase.h b/src/tools/qdoc/qdocdatabase.h
index 5786fa0664..4decba5f79 100644
--- a/src/tools/qdoc/qdocdatabase.h
+++ b/src/tools/qdoc/qdocdatabase.h
@@ -200,6 +200,7 @@ class QDocDatabase
void insertOpenNamespace(const QString& path) { openNamespaces_.insert(path); }
FunctionNode* findNodeInOpenNamespace(const QStringList& parentPath, const FunctionNode* clone);
Node* findNodeInOpenNamespace(QStringList& path, Node::Type type, Node::SubType subtype);
+ void setShowInternal(bool value) { showInternal_ = value; }
/* debugging functions */
void printModules() const;
@@ -220,6 +221,7 @@ class QDocDatabase
private:
static QDocDatabase* qdocDB_;
+ bool showInternal_;
QString version_;
QDocMultiMap masterMap_;
Tree* tree_;