Skip to content

Commit

Permalink
Missing word after \n command in Doxygen rtf output, version 1.8.5 & up
Browse files Browse the repository at this point in the history
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
  • Loading branch information
albert-github committed May 2, 2014
1 parent b944c2a commit ea9f3b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtfdocvisitor.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit ea9f3b1

Please sign in to comment.