summaryrefslogtreecommitdiffstats
path: root/src/util.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-09-17 19:22:00 (GMT)
committerGitHub <noreply@github.com>2019-09-17 19:22:00 (GMT)
commitc692bd33f9576ce7493f4e83a1510a2f8e17cdbe (patch)
tree661e99180bc5db44929290d7b4cb88a6f48fa687 /src/util.cpp
parent98823086ba405b98bf9391ff4b98282b6e7d76fe (diff)
parenta445ecc48e8152848e78fa2f167a556f0cac5616 (diff)
downloadDoxygen-c692bd33f9576ce7493f4e83a1510a2f8e17cdbe.zip
Doxygen-c692bd33f9576ce7493f4e83a1510a2f8e17cdbe.tar.gz
Doxygen-c692bd33f9576ce7493f4e83a1510a2f8e17cdbe.tar.bz2
Merge pull request #7260 from albert-github/feature/bug_xref_page
Warning with xrefitem from documentation
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 0e2c5e6..9fe7bba 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -6745,6 +6745,7 @@ PageDef *addRelatedPage(const char *name,const QCString &ptitle,
const QList<ListItemInfo> *sli,
GroupDef *gd,
TagInfo *tagInfo,
+ bool xref,
SrcLangExt lang
)
{
@@ -6752,7 +6753,7 @@ PageDef *addRelatedPage(const char *name,const QCString &ptitle,
//printf("addRelatedPage(name=%s gd=%p)\n",name,gd);
if ((pd=Doxygen::pageSDict->find(name)) && !tagInfo)
{
- warn(fileName,startLine,"multiple use of page label '%s', (other occurrence: %s, line: %d)",
+ if (!xref) warn(fileName,startLine,"multiple use of page label '%s', (other occurrence: %s, line: %d)",
name,pd->docFile().data(),pd->docLine());
// append documentation block to the page.
pd->setDocumentation(doc,fileName,startLine);