summaryrefslogtreecommitdiffstats
path: root/src/xmldocvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-08-10 12:33:14 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-08-10 12:33:14 (GMT)
commitfcb7d9fb380b714e1db9a279ceeba5af4cf59965 (patch)
treeb46f2a55c2a861ad13f8820c54b14d1e20103f58 /src/xmldocvisitor.cpp
parentc82abe1f23ec55aa1d05f118c2bae3aac3b68296 (diff)
downloadDoxygen-fcb7d9fb380b714e1db9a279ceeba5af4cf59965.zip
Doxygen-fcb7d9fb380b714e1db9a279ceeba5af4cf59965.tar.gz
Doxygen-fcb7d9fb380b714e1db9a279ceeba5af4cf59965.tar.bz2
Correcting labels for citations
The labels for RTF and XML were incorrect due to the fact that the wrong branch was chosen in the code (the newAnchor was set for the results of the `\cite ` command as well). Small readability issue with XML (when there are a lot of citations).
Diffstat (limited to 'src/xmldocvisitor.cpp')
-rw-r--r--src/xmldocvisitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmldocvisitor.cpp b/src/xmldocvisitor.cpp
index 93765b1..adb2e33 100644
--- a/src/xmldocvisitor.cpp
+++ b/src/xmldocvisitor.cpp
@@ -488,7 +488,7 @@ void XmlDocVisitor::visitPre(DocPara *)
void XmlDocVisitor::visitPost(DocPara *)
{
if (m_hide) return;
- m_t << "</para>";
+ m_t << "</para>" << endl;
}
void XmlDocVisitor::visitPre(DocRoot *)