summaryrefslogtreecommitdiffstats
path: root/src/qdoc/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/node.h')
-rw-r--r--src/qdoc/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/node.h b/src/qdoc/node.h
index 2b208d48f..e76d940f9 100644
--- a/src/qdoc/node.h
+++ b/src/qdoc/node.h
@@ -188,7 +188,7 @@ public:
void setPageType(PageType t) { pageType_ = (unsigned char) t; }
void setPageType(const QString& t);
void setParent(Aggregate* n) { parent_ = n; }
- void setIndexNodeFlag() { indexNodeFlag_ = true; }
+ void setIndexNodeFlag(bool isIndexNode = true) { indexNodeFlag_ = isIndexNode; }
virtual void setOutputFileName(const QString& ) { }
bool isQmlNode() const { return genus() == QML; }