summaryrefslogtreecommitdiffstats
path: root/src/rtfdocvisitor.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/rtfdocvisitor.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/rtfdocvisitor.cpp')
-rw-r--r--src/rtfdocvisitor.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rtfdocvisitor.cpp b/src/rtfdocvisitor.cpp
index c4bcf24..4e89193 100644
--- a/src/rtfdocvisitor.cpp
+++ b/src/rtfdocvisitor.cpp
@@ -784,7 +784,6 @@ void RTFDocVisitor::visitPre(DocSimpleSect *s)
// special case 1: user defined title
if (s->type()!=DocSimpleSect::User && s->type()!=DocSimpleSect::Rcs)
{
- m_t << ":";
m_t << "\\par";
m_t << "}"; // end bold
incIndentLevel();
@@ -1379,7 +1378,6 @@ void RTFDocVisitor::visitPre(DocParamSect *s)
default:
ASSERT(0);
}
- m_t << ":";
m_t << "\\par";
m_t << "}" << endl;
bool useTable = s->type()==DocParamSect::Param ||