From 08be7a8ef12518736b2530504a28904eec3e47ab Mon Sep 17 00:00:00 2001 From: ahoogol Date: Sat, 2 Sep 2017 12:48:35 +0430 Subject: + Added: support RTL for DocXRefItem in html - Removed: support RTL form Return section in html, for consistency with parameter sections --- src/htmldocvisitor.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index 7404a4d..8b6d26c 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -1144,8 +1144,10 @@ void HtmlDocVisitor::visitPre(DocSimpleSect *s) { if (m_hide) return; forceEndParagraph(s); - m_t << "typeString()) - << ">
"; + if (s->type() != DocSimpleSect::Return) + m_t << "typeString()) << ">
"; + else + m_t << "
typeString() << "\">
"; switch(s->type()) { case DocSimpleSect::See: @@ -1831,7 +1833,8 @@ void HtmlDocVisitor::visitPre(DocXRefItem *x) bool anonymousEnum = x->file()=="@"; if (!anonymousEnum) { - m_t << "
key() << "\">
key()) + << ">
relPath() << x->file() << Doxygen::htmlFileExtension << "#" << x->anchor() << "\">"; } -- cgit v0.12