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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}