diff options
author | albert-github <albert.tests@gmail.com> | 2020-01-23 16:57:10 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2020-01-23 16:57:10 (GMT) |
commit | 134b336c018f8a1cd66acc9922f12387e9a1dbcf (patch) | |
tree | 61c631d1cc0faed919c030a2d67a4013abf2ef96 | |
parent | dc67dbe5bd5a48756c591ad02b9f68fbd2a57687 (diff) | |
download | Doxygen-134b336c018f8a1cd66acc9922f12387e9a1dbcf.zip Doxygen-134b336c018f8a1cd66acc9922f12387e9a1dbcf.tar.gz Doxygen-134b336c018f8a1cd66acc9922f12387e9a1dbcf.tar.bz2 |
Bug 780630 - Nested @ingroup generates bad breadclumb list
The writing of the "pipe" symbol was done at the wrong moment.
-rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index abcd910..260ee01 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -6754,11 +6754,11 @@ bool recursivelyAddGroupListToTitle(OutputList &ol,const Definition *d,bool root bool first=true; for (gli.toFirst();(gd=gli.current());++gli) { + if (!first) { ol.writeString(" | "); } else first=false; if (recursivelyAddGroupListToTitle(ol, gd, FALSE)) { ol.writeString(" » "); } - if (!first) { ol.writeString(" | "); } else first=FALSE; ol.writeObjectLink(gd->getReference(),gd->getOutputFileBase(),0,gd->groupTitle()); } if (root) |