summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-01-23 21:17:05 (GMT)
committerGitHub <noreply@github.com>2020-01-23 21:17:05 (GMT)
commitb3e524adff49a4ca79510dba1ca37eb7302c1cb6 (patch)
tree337699e34fe923742cf3ada787fca9940f1ac14e
parent31fc824caea5aee14461d2b2a2f1ab761dc8580b (diff)
parent134b336c018f8a1cd66acc9922f12387e9a1dbcf (diff)
downloadDoxygen-b3e524adff49a4ca79510dba1ca37eb7302c1cb6.zip
Doxygen-b3e524adff49a4ca79510dba1ca37eb7302c1cb6.tar.gz
Doxygen-b3e524adff49a4ca79510dba1ca37eb7302c1cb6.tar.bz2
Merge pull request #7535 from albert-github/feature/bug_780630
Bug 780630 - Nested @ingroup generates bad breadclumb list
-rw-r--r--src/util.cpp2
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(" &#124; "); } else first=false;
if (recursivelyAddGroupListToTitle(ol, gd, FALSE))
{
ol.writeString(" &raquo; ");
}
- if (!first) { ol.writeString(" &#124; "); } else first=FALSE;
ol.writeObjectLink(gd->getReference(),gd->getOutputFileBase(),0,gd->groupTitle());
}
if (root)