summaryrefslogtreecommitdiffstats
path: root/src/mandocvisitor.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-07-28 16:57:17 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-07-28 16:57:17 (GMT)
commitef1fa4ebcad2e4cc26b133cd35427962269bd433 (patch)
tree49b396d01325e15ee58b86f952b5f2ed76e57f26 /src/mandocvisitor.cpp
parentd103ea7f83588c29cec6d407e6fbc05ec6b2e5ba (diff)
downloadDoxygen-ef1fa4ebcad2e4cc26b133cd35427962269bd433.zip
Doxygen-ef1fa4ebcad2e4cc26b133cd35427962269bd433.tar.gz
Doxygen-ef1fa4ebcad2e4cc26b133cd35427962269bd433.tar.bz2
issue #7126 Latex output format fixes
Based on the discussion in the proposed pull requests #7126, remove the colon in case it is clear that we have to do with a heading.
Diffstat (limited to 'src/mandocvisitor.cpp')
-rw-r--r--src/mandocvisitor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mandocvisitor.cpp b/src/mandocvisitor.cpp
index b13f7e4..9f5a45b 100644
--- a/src/mandocvisitor.cpp
+++ b/src/mandocvisitor.cpp
@@ -571,7 +571,7 @@ void ManDocVisitor::visitPre(DocSimpleSect *s)
// special case 1: user defined title
if (s->type()!=DocSimpleSect::User && s->type()!=DocSimpleSect::Rcs)
{
- m_t << ":\\fP" << endl;
+ m_t << "\\fP" << endl;
m_t << ".RS 4" << endl;
}
}
@@ -944,7 +944,7 @@ void ManDocVisitor::visitPre(DocParamSect *s)
default:
ASSERT(0);
}
- m_t << ":\\fP" << endl;
+ m_t << "\\fP" << endl;
m_t << ".RS 4" << endl;
}