summaryrefslogtreecommitdiffstats
path: root/src/tools/qdoc/qdocdatabase.h
diff options
context:
space:
mode:
authorMartin Smith <martin.smith@digia.com>2014-11-05 12:51:12 +0100
committerMartin Smith <martin.smith@digia.com>2014-11-12 08:12:03 +0100
commit98e77dab75e1463e51c2fc3893d2d44e146e9a8b (patch)
tree3e1cc9c365830c8fae8e41e145d95bb2437f0732 /src/tools/qdoc/qdocdatabase.h
parent623891acd600861338e2bdb4b4084c6b6451eb0a (diff)
qdoc: Generate the links-to-broken-links page
The cross-module link report now contains an entry for the links to broken links subpage. It is the last entry in the links-to-links table on the QA page. Change-Id: I9e0b3ba5f2efe76055902467348db878dbed9991 Task-number: QTBUG-41850 Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
Diffstat (limited to 'src/tools/qdoc/qdocdatabase.h')
-rw-r--r--src/tools/qdoc/qdocdatabase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/qdoc/qdocdatabase.h b/src/tools/qdoc/qdocdatabase.h
index 09bfbbfac3..148e40bb4a 100644
--- a/src/tools/qdoc/qdocdatabase.h
+++ b/src/tools/qdoc/qdocdatabase.h
@@ -392,8 +392,8 @@ class QDocDatabase
QString getLinkCounts(QStringList& strings, QVector<int>& counts) {
return forest_.getLinkCounts(strings, counts);
}
- QString getNewLinkTarget(const Node* t, const QString& fileName, QString& text) {
- return primaryTree()->getNewLinkTarget(t, fileName, text);
+ QString getNewLinkTarget(const Node* t, const QString& fileName, QString& text, bool broken = false) {
+ return primaryTree()->getNewLinkTarget(t, fileName, text, broken);
}
TargetList* getTargetList(const QString& t) { return primaryTree()->getTargetList(t); }
QStringList getTargetListKeys() { return primaryTree()->getTargetListKeys(); }