summaryrefslogtreecommitdiffstats
path: root/src/docbookvisitor.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-04 14:19:53 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-04 14:19:53 (GMT)
commitd645425393534be6e486e7ac95a5dbfa2a732fdc (patch)
treeda2bf229a19f78c6f62cfb7c9fbd3acde33170f2 /src/docbookvisitor.cpp
parent300440178962a0c4b9c5a52b449a68777da67c7b (diff)
parent1c25efff32ab9b8032b032f5e2374f77b09354eb (diff)
downloadDoxygen-d645425393534be6e486e7ac95a5dbfa2a732fdc.zip
Doxygen-d645425393534be6e486e7ac95a5dbfa2a732fdc.tar.gz
Doxygen-d645425393534be6e486e7ac95a5dbfa2a732fdc.tar.bz2
Merge branch 'feature/issue_6831' of https://github.com/albert-github/doxygen into albert-github-feature/issue_6831
Diffstat (limited to 'src/docbookvisitor.cpp')
-rw-r--r--src/docbookvisitor.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp
index 24fb43f..a42a895 100644
--- a/src/docbookvisitor.cpp
+++ b/src/docbookvisitor.cpp
@@ -1433,11 +1433,9 @@ DB_VIS_C
{
QListIterator<DocNode> li(pl->paramTypes());
DocNode *type;
- bool first=TRUE;
m_t << " <entry>";
for (li.toFirst();(type=li.current());++li)
{
- if (!first) m_t << " | "; else first=FALSE;
if (type->kind()==DocNode::Kind_Word)
{
visit((DocWord*)type);
@@ -1446,6 +1444,11 @@ DB_VIS_C
{
visit((DocLinkedWord*)type);
}
+ else if (type->kind()==DocNode::Kind_Sep)
+ {
+ m_t << " " << ((DocSeparator *)type)->chars() << " ";
+ }
+
}
m_t << " </entry>";
}