Commit ea9f3b1d authored by albert-github's avatar albert-github

Missing word after \n command in Doxygen rtf output, version 1.8.5 & up

After a \par command no space or new line was present resulting in the joining of the \par with the first word after the \n.
Inserting an newline solves this problem
parent b944c2af
......@@ -168,7 +168,7 @@ void RTFDocVisitor::visit(DocLineBreak *)
{
if (m_hide) return;
DBG_RTF("{\\comment RTFDocVisitor::visit(DocLineBreak)}\n");
m_t << "\\par";
m_t << "\\par" << endl;
m_lastIsPara=TRUE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment